Vertical Slice #1: Sonic Adventure

C#

Unity

This project serves as a reconstuction of the first level (Emerald Coast) of the original ‘Sonic Adventure’ for the Sega Dreamcast. This project is made by five people using the Unity Engine and the language ‘C#’. The development team contains two programmers and three game artists.

A ‘Vertical Slice’ refers to a piece of gameplay, lasting approximately 10 seconds. A piece from the first level is usually picked to make it easier to compare gameplay between the original game and the Vertical Slice. With this project, Wayne was able to prove himself capable of implementing gameplay features that are shown in the first level of the actual game.

The player (Sonic) drops rings in a circle pattern when he gets hit by hazardous objects, like the spikes shown below. The pattern at which the player drops rings is determined by the amount of rings Sonic possesses. The angle at which the rings drop is then determined by dividing the circle by that amount.

This is the solution to dropping rings in a ring shaped pattern, as depicted.

The original game contains automatic camera movement that follows the player (Sonic) based on his progress in the level. The ‘AutoCamera’-class is implemented to fill in that role, while also maintaining a fixed view of the player while he/she runs on the loop. The camera then switches back to the original position at which it can follow the player.