Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


HideInHierarchy

The object will not appear in the hierarchy.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Field
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
HideInHierarchy = 1

Examples

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