public static GameObject CreatePrimitive (PrimitiveType type);

Parámetros

typeThe type of primitive to create.

Descripción

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); } }