PrimitiveType.Plane 平面

PrimitiveType.Plane

Description描述

A Plane primitive

一个基本平面。

参见:GameObject.CreatePrimitive

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

本脚本参考基于Unity 3.4.1f5

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