EECS 494 Metroid Tutorials

Scene Setup

To create a new scene, go to File->New Scene. By default Unity will start you in a new scene when you create a project.

Save the scene with a name like Main to your Scenes folder.

Camera Configuration

The first thing we’ll want to do is setup the camera, Main Camera, that was included when we made the scene.

Set the Clear Flags to Solid Color

Set the Background to Black

Ensure the Projection is Orthographic

Set the Size to 7.5

Set the Position to (39.5, 22, -10)

Camera

Aspect Ratio Configuration

Our view isn’t quite ready yet. Right now our game is defaulting to a Free Aspect ratio, but we want it to display at the NES’s 256:240 Aspect Ratio.

Open your Game Tab. Click where it says Free Aspect and then click the plus near the bottom of the window that popped up.

Set the Label as NES.

Set the type as Aspect Ratio

And set the Width & Height to 16 & 15

NES

Conclusion

And that’s it for setting up our scene! Now we can finally get to adding content to the scene. When you’re ready, commit your changes and then head over to 03-Placing Tiles.