Hey guys,
I have a simple script for switching between first and third person… The script is…
var FirstPersonCamera : Camera;
var ThirdPersonCamera : Camera;
function Update()
{
if(Input.GetButtonDown("Tab"))
{
FirstPersonCamera.enabled = !FirstPersonCamera.enabled;
ThirdPersonCamera.enabled = !ThirdPersonCamera.enabled;
}
}
And it works fine switching to the third person camera… But, it won’t let me switch back! If you guys see an issue somewhere, please point it out…
-Thanks, Gibson