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