CameraBox.Start C# (CSharp) Method

Start() public method

Initiazes all of the variables that need to be initialized and makes sure only one camera is on.
public Start ( ) : void
return void
    void Start ()
    {
	   foreach (Camera c in cams)
       {
            c.enabled = false;
       }
        cams[currentIndex].enabled = true;
	}