PrimitiveType.Plane 平面
Description描述
A Plane primitive
一个基本平面。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void Start() {
GameObject Plane = GameObject.CreatePrimitive(PrimitiveType.Plane);
}
}
// Creates a Plane primitive
//创建一个基本平面
function Start () {
var Plane : GameObject = GameObject.CreatePrimitive(PrimitiveType.Plane);
}
最后修改:2011年5月19日 Thursday 21:49