|
static void | ClearEditableFieldFlags () |
|
static bool | EditableBoolField (string caption, bool value, Callback< bool > onSubmit) |
|
static double | EditableDoubleField (string caption, double value, Callback< double > onSubmit) |
|
static int | EditableEnumField (string caption, System.Type enumType, int selected, Callback< int > onSubmit, params GUILayoutOption[] guiOptions) |
|
static T | EditableField< T > (string caption, T value, Func< T, string > ToStringMethod, Func< string, T > ParseMethod, Callback< T > onSubmit) |
|
static float | EditableFloatField (string caption, float value, Callback< float > onSubmit) |
|
static int | EditableIntField (string caption, int value, Callback< int > onSubmit) |
|
static string | EditableStringField (string caption, string value, Callback< string > onSubmit) |
|
static string | EditableTextArea (string caption, string value, Callback< string > onSubmit, params GUILayoutOption[] guiOptions) |
|
static T | EnumFlagField< T > (string caption, T value, int ValueCount, int xCount, Func< int, T > ValueAt, Func< int, string > ValueNameAt, Func< T, int > IntCast, Func< int, T > TCast) |
|
static float | LabelHorizontalSlider (string caption, float value, float leftValue, float rightValue, string valueStringFormat, params GUILayoutOption[] guiOptions) |
|
static float | LabelVerticalSlider (string caption, float value, float leftValue, float rightValue, string valueStringFormat, params GUILayoutOption[] guiOptions) |
|
static void | ProgressBar (Rect rect, float start, float end, GUIStyle style) |
|
static void | ProgressBarVertical (Rect rect, float start, float end, GUIStyle style) |
|
static Rect | ScreenCenteredRect (float width, float height) |
|