Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

Camera.OnPreCull()

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual

Description

OnPreCull is called before a camera culls the Scene.

Culling determines which objects are visible to the camera. OnPreCull is called just before this process. This message is sent to all scripts attached to the camera.

If you want to change camera's viewing parameters (e.g. fieldOfView or just transform), this is the place to do it. Visibility of Scene objects will be determined based on camera's parameters after OnPreCull.

See Also: onPreCull delegate.

// Attach this to a camera.
// Inverts the view of the camera so everything rendered by it is flipped

using UnityEngine; using System.Collections;

public class ExampleClass : MonoBehaviour { Camera cam;

void Start() { cam = GetComponent<Camera>(); }

void OnPreCull() { cam.ResetWorldToCameraMatrix(); cam.ResetProjectionMatrix(); cam.projectionMatrix = cam.projectionMatrix * Matrix4x4.Scale(new Vector3(1, -1, 1)); }

// Set it to true so we can watch the flipped Objects void OnPreRender() { GL.invertCulling = true; }

// Set it to false again because we dont want to affect all other cammeras. void OnPostRender() { GL.invertCulling = false; } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答