| 12345678910111213141516171819202122232425262728293031323334353637 | using System;namespace EnhancedHierarchy {    [Flags]    public enum EntryMode {        Error = 1 << 0,        Assert = 1 << 1,        Log = 1 << 2,        Fatal = 1 << 4,        DontPreprocessCondition = 1 << 5,        AssetImportError = 1 << 6,        AssetImportWarning = 1 << 7,        ScriptingError = 1 << 8,        ScriptingWarning = 1 << 9,        ScriptingLog = 1 << 10,        ScriptCompileError = 1 << 11,        ScriptCompileWarning = 1 << 12,        StickyError = 1 << 13,        MayIgnoreLineNumber = 1 << 14,        ReportBug = 1 << 15,        DisplayPreviousErrorInStatusBar = 1 << 16,        ScriptingException = 1 << 17,        DontExtractStacktrace = 1 << 18,        ShouldClearOnPlay = 1 << 19,        GraphCompileError = 1 << 20,        ScriptingAssertion = 1 << 21,        VisualScriptingError = 1 << 22    }    public enum ChildrenChangeMode {        ObjectAndChildren = 0,        ObjectOnly = 1,        Ask = 2,    }}
 |