Description

Объект не будет отображаться в иерархии.

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