Multiple Cameras in game
Hi! I'm doing multi-cam platformer. How to make so that when character touch to a specific object, the first camera was switched off, and the second switch on?
Comment
Answer by SmomoGame · Oct 19, 2016 at 02:30 AM
Simply, use
GetComponent<Camera>().enabled = true/false ; // C#
to switch between cameras.
If you want smooth movement, use only one camera and switch the position of this camera.
Your answer
Follow this Question
Related Questions
How to do a wall jump? i am very novice 0 Answers
Rotate camera when colliding 0 Answers
Camera Rotation Around Player 1 Answer
uNet hitboxes and movement. 0 Answers
When playing builded version of game the cameras only captures part of scene. 0 Answers