Can someone give me an example of how to switch cameras in a scene?
I’m wanting to switch between a first person view camera and third person view camera.
Thanks!
Can someone give me an example of how to switch cameras in a scene?
I’m wanting to switch between a first person view camera and third person view camera.
Thanks!
I just do something like:
var otherCam : Camera;
function Whichever()
{
if (condition) otherCam.active=true;
}
Moved from iPhone Dev to Scripting…
Thanks!