설명

A plane primitive.

using UnityEngine;
using System.Collections;

// Creates a plane primitive

public class ExampleClass : MonoBehaviour { void Start() { GameObject plane = GameObject.CreatePrimitive(PrimitiveType.Plane); } }