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