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.
CloseFor 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.
Closecamera | Camera to cull for. |
renderLoop | Render loop the culling results will be used with. |
results | Culling results. |
void Flag indicating whether culling succeeded.
Perform culling for a Camera.
This function is the same as calling GetCullingParameters for a camera, followed by a call to Cull that takes these culling parameters. Camera's transform, projection parameters and other flags that might affect culling are used.
Cull returns false if camera is invalid to render (empty viewport rectangle, invalid clip plane setup etc.).
Culling results are bound to a RenderLoop they will be used with; memory used by culling results is released once the render loop is finished.
See Also: CullResults, RenderLoop.
parameters | Parameters for culling. |
renderLoop | Render loop the culling results will be used with. |
void Culling results.
Perform culling with custom CullingParameters.
See Also: GetCullingParameters.