|
static void | Text (string text, Rect rect) |
| Draw text More...
|
|
static void | Text (string text, Rect rect, Font font) |
| Draw text with font More...
|
|
static void | Text (string text, Rect rect, Font font, float fontSize) |
| Draw text with font and font size More...
|
|
static void | Text (string text, Rect rect, Font font, float fontSize, float fontResolution) |
| Draw text with font, font size and font resolution More...
|
|
static void | Text (string text, Rect rect, Font font, float fontSize, float fontResolution, float lineSpacing) |
| Draw text with font, font size, font resolution and line spacing More...
|
|
static void | Text (string text, Rect rect, Font font, float fontSize, float fontResolution, float lineSpacing, TextWordWrap wordWrap) |
| Draw text with font, font size, font resolution, line spacing and word wrap More...
|
|
static void | Text (string text, Rect rect, Font font, float fontSize, float fontResolution, float lineSpacing, TextWordWrap wordWrap, TextHorizontalAlignment horizontalAlignment, TextVerticalAlignment verticalAlignment) |
| Draw text with font, font size, font resolution, line spacing, word wrap, horizontal alignment and vertical alignment More...
|
|
static void | Text (string text, Rect rect, Font font, float fontSize, float fontResolution, float lineSpacing, TextWordWrap wordWrap, TextHorizontalAlignment horizontalAlignment, TextVerticalAlignment verticalAlignment, Color color) |
| Draw text with font, font size, font resolution, line spacing, word wrap, horizontal alignment, vertical alignment and text color More...
|
|
static void | Text (string text, Rect rect, float fontSize, Color color) |
| Draw text with font size and text color More...
|
|
static void | Text (string text, Rect rect, Font font, float fontSize, Color color) |
| Draw text with font, font size and text color More...
|
|
static void | Text (string text, Rect rect, Font font, float fontSize, float fontResolution, Color color) |
| Draw text with font, font size, font resolution and text color More...
|
|
static void | Image (Texture texture, Rect rect) |
| Draw image More...
|
|
static void | Image (Texture texture, Rect rect, Color color) |
| Draw image with color tint More...
|
|
static void | Image (Texture texture, Rect rect, Color color, ImageType imageType) |
| Draw image with color tint and image type More...
|
|
static bool | Button (int id, Rect rect, bool interactable) |
| Draw enabled or disabled button More...
|
|
static bool | Button (int id, Rect rect, Color normalColor, Color hoverColor, Color activeColor, Color disabledColor, bool interactable) |
| Draw enabled or disabled button with tint colors More...
|
|
static bool | Button (int id, Rect rect, Color normalColor, Color hoverColor, Color activeColor, Color disabledColor, Texture normalTexture, Texture hoverTexture, Texture activeTexture, Texture disabledTexture, ImageType imageType, bool interactable) |
| Draw enabled or disabled button with textures and tint colors More...
|
|
static bool | Button (int id, Rect rect, Texture normalTexture, Texture hoverTexture, Texture activeTexture, Texture disabledTexture, ImageType imageType, bool interactable) |
| Draw enabled or disabled button with textures More...
|
|
static bool | Button (int id, Rect rect, Color normalColor, Color hoverColor, Color activeColor, Color disabledColor, Texture texture, ImageType imageType, bool interactable) |
| Draw enabled or disabled button with one texture and tint colors More...
|
|
Definition at line 7 of file GUI.cs.