Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Camera.OnWillRenderObject()

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual

Descripción

OnWillRenderObject is called once for each camera if the object is visible.

This function is called, if the object is deemed visible from the current camera after the culling process. The method is useful, if you need a preparation step for every camera that is rendering the object. One example of this is rendering reflection onto a render texture. The reflection will be different for every camera's view point, and needs to be rendered before the original object. If the object gets culled away by a given camera, the reflections for that object will be skipped. For usage in a proper context, see the script Water.cs in Assets->Import Package->Effects.

Note that Camera.current will be set to the camera that will render the object.