Skip to content

Instantly share code, notes, and snippets.

@jimu
Created July 30, 2020 23:06
Show Gist options
  • Save jimu/d33aff39c13978ed9f086d7cb5942304 to your computer and use it in GitHub Desktop.
Save jimu/d33aff39c13978ed9f086d7cb5942304 to your computer and use it in GitHub Desktop.
Camera code for Trevor Speed
void Update()
{
If (Input.GetKeyDown(KeyCode.C))
{
cameras[cameraIndex].SetActive(false);
cameraIndex = (cameraIndex + 1) % cameras.Length;
cameras[cameraIndex].SetActive(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment