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