Version: 2017.3

説明

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { int i = 0; while (i < 5) { GameObject createdGO = GameObject.CreatePrimitive(PrimitiveType.Plane); createdGO.hideFlags = HideFlags.HideInHierarchy; i++; } } }