|
OnPreRender is called before a camera starts rendering the scene.
This function is called only if the script is attached to the camera and is enabled.
Note that if you change camera's viewing parameters (e.g. fieldOfView) here, they will only take effect the next frame. Do that in OnPreCull instead. OnPreRender can be a co-routine, simply use the yield statement in the function.
See Also: OnPostRender.