public static bool Toggle(ref bool value, string text) { return(AutoGUILayoutToggle.Toggle(ref value, text)); }
public static bool Toggle(bool value, Texture image, GUIStyle style) { return(AutoGUILayoutToggle.Toggle(ref value, image, style)); }
public static bool Toggle(bool value, GUIContent content, GUIStyle style) { return(AutoGUILayoutToggle.Toggle(ref value, content, style)); }
public static bool Toggle(bool value, string text, GUIStyle style) { return(AutoGUILayoutToggle.Toggle(ref value, text, style)); }