Example #1
0
        public static bool DisclosureToggle(String title, ref bool value, bool forceHorizontal = true, float width = 175, params Action[] actions)
        {
            bool changed = UI.TogglePrivate(title, ref value, true, forceHorizontal, width);

            UI.If(value, actions);
            return(changed);
        }