标签:style blog class code java tar
using UnityEngine; using System.Collections; public class Test : MonoBehaviour { public GameObject anObject ; private Camera cam ; private Plane[] planes ; void Start() { cam = Camera.main; planes = GeometryUtility.CalculateFrustumPlanes(cam); } void Update() { if(GeometryUtility.TestPlanesAABB(planes,anObject.collider.bounds)) Debug.Log(anObject.name + " has been detected!"); else Debug.Log("Nothing has been detected"); } }
官网地址:http://docs.unity3d.com/Documentation/ScriptReference/GeometryUtility.TestPlanesAABB.html
标签:style blog class code java tar
原文地址:http://www.cnblogs.com/123ing/p/3704898.html