示例#1
0
    public static void ExtractPlanes(Camera camera, ref Plane[] planes)
    {
        Matrix4x4 matrix4x4 = camera.worldToCameraMatrix;

        CameraUtil.ExtractPlanes(GL.GetGPUProjectionMatrix(camera.projectionMatrix, false) * matrix4x4, ref planes);
    }