包含此页的版本:
不含此页的版本:
返回网格中的顶点数(只读)。
using UnityEngine;public class Example : MonoBehaviour { void Start() { Mesh mesh = GetComponent<MeshFilter>().mesh; print(mesh.vertexCount); } }