このページを含むバージョン:
このページを含まないバージョン:
プレーン
See Also: GameObject.CreatePrimitive.
using UnityEngine; using System.Collections;// Creates a plane primitivepublic class ExampleClass : MonoBehaviour { void Start() { GameObject plane = GameObject.CreatePrimitive(PrimitiveType.Plane); } }