Version: 2019.2

説明

オブジェクトが「ヒエラルキー」に表示されません

using UnityEngine;

public class Example : MonoBehaviour { // Creates 5 planes and hides them from the Hierarchy in the Editor.

void Start() { for (int i = 0; i < 5; i++) { GameObject createdGO = GameObject.CreatePrimitive(PrimitiveType.Plane); createdGO.hideFlags = HideFlags.HideInHierarchy; } } }