Example #1
0
 public static bool Button(GUIContent content, GUIStyle style, params GUILayoutOption[] options)
 {
     return(GUILayout.DoButton(content, style, options));
 }
Example #2
0
 public static bool Button(string text, GUIStyle style, params GUILayoutOption[] options)
 {
     return(GUILayout.DoButton(GUIContent.Temp(text), style, options));
 }
Example #3
0
 public static bool Button(Texture image, GUIStyle style, params GUILayoutOption[] options)
 {
     return(GUILayout.DoButton(GUIContent.Temp(image), style, options));
 }
Example #4
0
 public static bool Button(GUIContent content, params GUILayoutOption[] options)
 {
     return(GUILayout.DoButton(content, GUI.skin.button, options));
 }
Example #5
0
 public static bool Button(string text, params GUILayoutOption[] options)
 {
     return(GUILayout.DoButton(GUIContent.Temp(text), GUI.skin.button, options));
 }
Example #6
0
 public static bool Button(Texture image, params GUILayoutOption[] options)
 {
     return(GUILayout.DoButton(GUIContent.Temp(image), GUI.skin.button, options));
 }