版本:Unity 6 (6000.0)
语言英语
  • C#

HideFlags.HideInHierarchy

建议更改

成功!

感谢您帮助我们改善 Unity 文档质量。尽管我们无法接受所有提交,但我们确实会阅读用户建议的每一处更改,并在适用情况下进行更新。

关闭

提交失败

由于某些原因,您建议的更改无法提交。请在几分钟后<a>重试</a>。感谢您抽出时间帮助我们改善 Unity 文档质量。

关闭

取消

描述

该对象将不会出现在层级结构中。

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