Is there a way to change between orthographic view and first-person?
I'm making a 2D-platformer with 3D-modeled stages. At one stage, I'm thinking about doing as I've asked above, in mid-game. I have some exerience with programming, but I'm new at Unity (30hrs or so). I really appreciate any help i can get.
Answer by ArmanDoesStuff · Feb 15, 2017 at 07:10 PM
GetComponent<Camera>().orthographic = false
Or true if you want to change it back to orthographic
$$anonymous$$uch simpler than I thought >D I read somewhere how difficult it is for a smooth transition between ortho. and third. Figured it was about the same camplexity even without the smoothness. Thanks mate!
Your answer
Follow this Question
Related Questions
Player input independent of frame rate? 1 Answer
Make 2 Players Stay on Screen at Same Time 0 Answers
Giving The Illusion of Depth in an Orphographic Game 0 Answers
My cursor is gone when I go from my fps scene to the main menu. 0 Answers
The 2d orthographic camera's gizmo or icon is touching the rigid objects 0 Answers