Mesh

class in UnityEngine

/

Inherits from:Object

Switch to Manual

Description

用于通过脚本创建或修改网格的类。

网格包含顶点和多个三角形数组。 请参阅程序化示例项目 以了解使用网格接口的示例。

三角形数组是顶点数组的简单索引;每个三角形三个索引。

对于每个顶点,可能有一条法线、两个纹理坐标、颜色和切线。 不过这些内容是可选的,可以随意删除。所有顶点信息都存储在具有相同 大小的单独数组中,因此如果网格有 10 个顶点,则还会有大小为 10 的数组 以用于法线和其他属性。

您可能需要将可修改的网格接口用于 3 种用途:

1. Building a mesh from scratch: should always be done in the following order:
a) assign vertices
b) assign triangles.

using UnityEngine;

public class Example : MonoBehaviour { Vector3[] newVertices; Vector2[] newUV; int[] newTriangles;

void Start() { Mesh mesh = new Mesh(); GetComponent<MeshFilter>().mesh = mesh; mesh.vertices = newVertices; mesh.uv = newUV; mesh.triangles = newTriangles; } }

2. Modifying vertex attributes every frame:
a) get vertices
b) modify them
c) assign them back to the mesh.

using UnityEngine;

public class Example : MonoBehaviour { void Update() { Mesh mesh = GetComponent<MeshFilter>().mesh; Vector3[] vertices = mesh.vertices; Vector3[] normals = mesh.normals;

for (var i = 0; i < vertices.Length; i++) { vertices[i] += normals[i] * Mathf.Sin(Time.time); }

mesh.vertices = vertices; } }

3. Continously changing the mesh triangles and vertices:
a) call Clear to start fresh
b) assign vertices and other attributes
c) assign triangle indices.

在分配新顶点或三角形之前调用 Clear 十分重要。 Unity 始终检查提供的三角形索引是否未引用超出边界的顶点。 调用 Clear,分配顶点,然后分配三角形可确保不会有超出边界的数据。

using UnityEngine;

public class ExampleClass : MonoBehaviour { Vector3[] newVertices; Vector2[] newUV; int[] newTriangles;

void Start() { Mesh mesh = GetComponent<MeshFilter>().mesh;

mesh.Clear();

// Do some calculations... mesh.vertices = newVertices; mesh.uv = newUV; mesh.triangles = newTriangles; } }

Variables

bindposes绑定姿势。每个索引处的绑定姿势引用索引相同的骨骼。
blendShapeCount返回此网格上的 BlendShape 计数。
boneWeights每个顶点的骨骼权重。
bounds网格的包围体。
colors网格的顶点颜色。
colors32网格的顶点颜色。
indexFormat网格索引缓冲区数据的格式。
isReadableReturns true if the Mesh is read/write enabled, or false if it is not.
normals网格的法线。
subMeshCountMesh 对象中的子网格数。
tangents网格的切线。
triangles包含网格中所有三角形的数组。
uv网格的基础纹理坐标。
uv2网格的第二个纹理坐标集(如果存在)。
uv3网格的第三个纹理坐标集(如果存在)。
uv4网格的第四个纹理坐标集(如果存在)。
uv5The fifth texture coordinate set of the mesh, if present.
uv6The sixth texture coordinate set of the mesh, if present.
uv7The seventh texture coordinate set of the mesh, if present.
uv8The eighth texture coordinate set of the mesh, if present.
vertexBufferCount获取网格中存在的顶点缓冲区数。(只读)
vertexCount返回网格中的顶点数(只读)。
vertices返回顶点位置的副本或分配新顶点位置数组。

Constructors

Mesh创建空网格。

Public Functions

AddBlendShapeFrame添加新的混合形状帧。
Clear清除所有顶点数据和所有三角形索引。
ClearBlendShapes从网格中清除所有混合形状。
CombineMeshes将多个网格合并到此网格中。
GetBaseVertex获取给定 sub-mesh 的基顶点索引。
GetBindposes获取此实例的绑定姿势。
GetBlendShapeFrameCount返回混合形状的帧计数。
GetBlendShapeFrameVertices检索混合形状帧的 deltaNormals、deltaNormals 和 /deltaTangents/。
GetBlendShapeFrameWeight返回混合形状帧的权重。
GetBlendShapeIndex按给定名称返回 BlendShape 的索引。
GetBlendShapeName按给定索引返回 BlendShape 的名称。
GetBoneWeights获取此实例的骨骼权重。
GetColors获取此实例的顶点颜色。
GetIndexCount获取给定 sub-mesh 的索引计数。
GetIndexStart对于给定 /sub-mesh/,获取网格索引缓冲区中的起始索引位置。
GetIndices获取指定子网格的索引列表。
GetNativeIndexBufferPtr检索指向索引缓冲区的原生(底层图形 API)指针。
GetNativeVertexBufferPtr检索指向顶点缓冲区的原生(底层图形 API)指针。
GetNormals获取此实例的顶点法线。
GetTangents获取此实例的切线。
GetTopology获取子网格的拓扑。
GetTriangles获取此对象上指定子网格的切线列表。
GetUVDistributionMetricThe UV distribution metric can be used to calculate the desired mipmap level based on the position of the camera.
GetUVs获取网格的 UV。
GetVertices获取此实例的顶点位置。
MarkDynamic优化网格以便频繁更新。
RecalculateBounds从顶点重新计算网格的包围体。
RecalculateNormals从三角形和顶点重新计算网格的法线。
RecalculateTangents从法线和纹理坐标重新计算网格的切线。
SetColors网格的顶点颜色。
SetIndices为子网格设置索引缓冲区。
SetNormals设置网格的法线。
SetTangents设置网格的切线。
SetTriangles为子网格设置三角形列表。
SetUVs设置网格的 UV。
SetVertices分配新的顶点位置数组。
UploadMeshData将以前进行的网格修改上传到图形 API。

Inherited members

Variables

hideFlagsShould the object be hidden, saved with the Scene or modifiable by the user?
name对象的名称。

Public Functions

GetInstanceID返回对象的实例 ID。
ToString返回 GameObject 的名称。

Static Functions

Destroy删除 GameObject、组件或资源。
DestroyImmediate立即销毁对象 /obj/。强烈建议您改用 Destroy。
DontDestroyOnLoadDo not destroy the target Object when loading a new Scene.
FindObjectOfType返回第一个类型为 type 的已加载的激活对象。
FindObjectsOfType返回所有类型为 type 的已加载的激活对象的列表。
Instantiate克隆 original 对象并返回克隆对象。

Operators

bool该对象是否存在?
operator !=比较两个对象是否引用不同的对象。
operator ==比较两个对象引用,判断它们是否引用同一个对象。