Versions with this page:
Versions without this page:
返回场景中所有已启用的摄像机。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public int count = Camera.allCameras.Length; void Example() { print("We've got " + count + " cameras"); } }