2D Graphic Game?

Can anyone suggest a 2D graphics tutorial, not like the 2d tutorial on the unity website, which has 3D graphics, I mean something like this, sorry I don’t know how to add pictures to my questions.

2 Answers

2

Not affiliated with them at all, but we use 2D Toolkit, and we are quite happy with it.

There’s also a tutorial from Rocket 5. I believe he has others on his site as well.

Unity is a 3D game engine, but you can make a 2D game this way:

1- Select the camera in the Project window;

2- In the Inspector, set the camera Rotation X field to 90 (Rotation 90 0 0) - this will make the camera point to the ground. Adjust also the Position Y field to a suitable height (50, for instance);

3- Still in the Inspector, set the Projection option to Orthographic;

4- Adjust the “zoom” of the camera through the Size field (below Projection);

The Inspector will become like this:

Then you can create a terrain, place your models, your character (use a CharacterController) etc.