第七通道中的纹理坐标 (UV)。
此通道也通常称为“UV6”。它映射到着色器语义`TEXCOORD6`。当您调用Mesh.HasVertexAttribute时,此通道对应于VertexAttribute.TexCoord6。
Unity 将 UV 存储在 0-1 空间中。[0,0] 表示纹理的左下角,[1,1] 表示右上角。值不会被钳制;如果需要,您可以使用低于 0 和高于 1 的值。
此属性支持向后兼容,但更新的GetUVs和SetUVs函数允许您以更用户友好的方式访问相同的数据,如果您需要,可以使用 Vector3 或 Vector4 值。
此属性返回数据的副本。这意味着它会导致堆内存分配。这也意味着,要对原始数据进行更改,您必须更新副本,然后将更新后的副本重新分配给网格。
以下示例演示了如何创建数组以保存 UV 数据,将纹理坐标分配给它,然后将其分配给网格。
// Generate planar uv coordinates for the seventh uv set
using UnityEngine;
public class ExampleClass : MonoBehaviour { void Start() { Mesh mesh = GetComponent<MeshFilter>().mesh; Vector3[] vertices = mesh.vertices; Vector2[] uvs = new Vector2[vertices.Length];
for (int i = 0; i < uvs.Length; i++) { uvs[i] = new Vector2(vertices[i].x, vertices[i].z); } mesh.uv7 = uvs; } }