Skip to content

Instantly share code, notes, and snippets.

@FlaShG
Last active June 13, 2023 06:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save FlaShG/38d860c836d9e09d606def9e6069024a to your computer and use it in GitHub Desktop.
Save FlaShG/38d860c836d9e09d606def9e6069024a to your computer and use it in GitHub Desktop.
Shows all GameObjects in the scene with hideFlags, so you can debug them.
using UnityEngine;
using UnityEditor;
public static class HideFlagsUtility
{
[MenuItem("Help/Hide Flags/Show All Objects")]
private static void ShowAll()
{
var allGameObjects = Object.FindObjectsOfType<GameObject>(true);
foreach (var go in allGameObjects)
{
switch (go.hideFlags)
{
case HideFlags.HideAndDontSave:
go.hideFlags = HideFlags.DontSave;
break;
case HideFlags.HideInHierarchy:
case HideFlags.HideInInspector:
go.hideFlags = HideFlags.None;
break;
}
}
}
}
@zangad
Copy link

zangad commented Jun 13, 2023

This is excellent, thank you! I had a couple of hidden prefab objects in my scene that had broken references, and since they were hidden, I could never see them in the hierarchy. This worked perfectly to show them and let me delete them. Thank you! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment