public void SetNormals (Vector3[] inNormals);
public void SetNormals (List<Vector3> inNormals);
public void SetNormals (NativeArray<T> inNormals);

参数

inNormals每顶点法线。

描述

设置网格的法线。

另请参阅:normals 属性。


public void SetNormals (Vector3[] inNormals, int start, int length);
public void SetNormals (List<Vector3> inNormals, int start, int length);
public void SetNormals (NativeArray<T> inNormals, int start, int length);

参数

inNormals每顶点法线。
start要从输入数组采用的第一个元素的索引。
length要从输入数组采用的元素数。

描述

使用输入数组的一部分设置网格的顶点法线。

此方法的行为方式如同调用 SetNormals,所使用的数组为整个数组的一个切片(从 start 索引开始,长度为给定 length)。生成的网格具有 length 数量的顶点。