示例#1
0
 public static bool Toggle(ref bool value, string text)
 {
     return(AutoGUILayoutToggle.Toggle(ref value, text));
 }
示例#2
0
 public static bool Toggle(bool value, Texture image, GUIStyle style)
 {
     return(AutoGUILayoutToggle.Toggle(ref value, image, style));
 }
示例#3
0
 public static bool Toggle(bool value, GUIContent content, GUIStyle style)
 {
     return(AutoGUILayoutToggle.Toggle(ref value, content, style));
 }
示例#4
0
 public static bool Toggle(bool value, string text, GUIStyle style)
 {
     return(AutoGUILayoutToggle.Toggle(ref value, text, style));
 }