Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I mix 2d and 3d scenes in game

I am totally new to Unity and I looked some tutorials and I want to make game which has 3 scenes which are 2d and 2 scenes which are 2d. Is this possible to do or I have to treat all as 3d scenes ? ( I read some books but didn't find or notice solution to this).

like image 467
PaolaJ. Avatar asked Apr 18 '15 13:04

PaolaJ.


People also ask

Can you mix 2D and 3D in Unity?

There's no problem mixing 2D and 3D since they are really the same thing (sprites are just textures on quads basically). It's only the physics engines that are different. You can use 3D physics on sprites if you want.

Is making a 3D game harder than a 2D game?

Also, game developers find it easier to develop 2D games than 3D. Due to the lower level of complexity, game developers invest less time and money to create 2D games, and following updates are easier to do.

Can I use 3D character in 2D game?

There's lots of ways to mix 2d and 3d content, different ways of setting up your scenes, cameras, and shaders depending on the look you are going for. So the answer is yes.

Should my game be 3D or 2D?

You should use whichever graphics you're more comfortable with. If you're great with sprites, do a 2D game. If you're great with models and textures, do a 3D game. If you're not great with either one, 2D is usually slightly quicker to produce (because 3D requires models AND 2D textures), but 14 months is a lot of time.


1 Answers

There is only one type of scene in Unity3d, which is fundamentally a 3d scene.

You can however put the Scene View into '2d Mode', this helps when working with 2d content. Here's a good introduction video on the 2d Scene View Mode:

http://unity3d.com/learn/tutorials/modules/beginner/2d/2d-mode

In reality you can mix and match 2d and 3d within one scene or just have a scene display all it's contents as 2d or 3d. This is down to how you have your camera(s) set-up, using Orthographic Projection on the camera to display as 2d - quite often you'll find that a lot of games have at least two cameras set-up in a scene, one camera for displaying the 3d content and a second (Orthographic) camera for displaying the 2d UI.

like image 152
James Woodward Avatar answered Sep 20 '22 11:09

James Woodward