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