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