Mesh.vertexCount 顶点数

var vertexCount : int

Description描述

Returns the number of vertices in the mesh (Read Only).

返回网格中顶点的数量(只读的)

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Start() {
		Mesh mesh = GetComponent<MeshFilter>().sharedMesh;
		print(mesh.vertexCount);
	}
}
function Start () {
	var mesh : Mesh = GetComponent(MeshFilter).sharedMesh;
	print(mesh.vertexCount);
}
最后修改:2010年12月9日 Thursday 18:09

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。