查看物体A是否被相机B渲染

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

posted @ 2014-05-03 10:40  ing...  阅读(361)  评论(0编辑  收藏  举报