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.

CanvasRenderer.AddUIVertexStream

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
public static function AddUIVertexStream(verts: List<UIVertex>, positions: List<Vector3>, colors: List<Color32>, uv0S: List<Vector2>, uv1S: List<Vector2>, normals: List<Vector3>, tangents: List<Vector4>): void;
public static void AddUIVertexStream(List<UIVertex> verts, List<Vector3> positions, List<Color32> colors, List<Vector2> uv0S, List<Vector2> uv1S, List<Vector3> normals, List<Vector4> tangents);

Parámetros

verts The UIVertex list to split.
positions The destination list for the verts positions.
colors The destination list for the verts colors.
uv0S The destination list for the verts uv0s.
uv1S The destination list for the verts uv1s.
normals The destination list for the verts normals.
tangents The destination list for the verts tangents.

Descripción

Take the Vertex steam and split it corrisponding arrays (positions, colors, uv0s, uv1s, normals and tangents).