Switching between 2d and 3d in unity

I am writing a simple game on Unity and working in a 2d dimension, but I would like to implement a transition between 2d and 3d: A player in 2d mode enters a portal and abruptly the game goes into 3d mode, hence the question: Is it possible and how to implement it?

Author: StarLord1123, 2019-01-30

1 answers

  1. Or you load another scene in which there will be a camera with Projection Perspective

  2. Or in the same scene, you switch Orthographic to Perspective in your main camera (Projection setting)

 3
Author: Andrew, 2019-01-30 17:38:13