Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.
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.
CerrarPor 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.
CerrarThe tangents of the mesh.
Tangents are mostly used in bump-mapped shaders. A tangent is a unit length vector that follows mesh
surface along horizontal (U) texture direction. Tangents in Unity are represented as Vector4,
with x,y,z components defining the vector, and w
used to flip the binormal if needed.
Unity calculates the other surface vector (binormal) by taking a cross product between normal
and tangent, and multiplying result by tangent.w. Thus w
should always be 1 or -1.
You should calculate tangents yourself if you plan to use bump-mapped shaders on the mesh.
Assign tangents after assigning normals or using RecalculateNormals.