Mesh.Mesh 网格

static function Mesh () : Mesh

Description描述

Creates an empty mesh

创建一个空的网格。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Start() {
		Mesh mesh = new Mesh();
		GetComponent<MeshFilter>().mesh = mesh;
	}
}
// Create a new mesh and assign it to the mesh filter
// 创建一个新的网格并赋予它一个网格过滤器
function Start () {
	var mesh : Mesh = new Mesh ();
	GetComponent(MeshFilter).mesh = mesh;
}
最后修改:2010年12月9日 Thursday 18:56

本脚本参考基于Unity 3.4.1f5

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