Version: 2020.3
言語: 日本語
public static GameObject CreatePrimitive (PrimitiveType type);

パラメーター

type The type of primitive to create.

説明

Creates a GameObject primitive.

using UnityEngine;
using UnityEditor;

public class CreatePrimitiveExample { [MenuItem("ObjectFactoryExample/Create Cube GameObject")] public void CreateCubeEditor() { Selection.activeGameObject = ObjectFactory.CreatePrimitive(PrimitiveType.Cube); } }