GUIText() | Creates a new GUIText. |
GUIText(String text, int x, int y, int width, int height) | Creates a new GUIText with its current text defined to be "text" argument, X position to be "x" argument, Y position to be "y" argument, width to be "width" argument and height to be "height" argument. |
GUIText(String text, Font font, int x, int y, int width, int height) | Creates a new GUIText with its current text defined to be "text" argument, font to be "font" argument, X position to be "x" argument, Y position to be "y" argument, width to be "width" argument and height to be "height" argument. |
GUIText(String text, Font font, int x, int y, int width, int height, [Alignment] alignment) | Creates a new GUIText with its current text defined to be "text" argument, font to be "font" argument, X position to be "x" argument, Y position to be "y" argument, width to be "width" argument, height to be "height" argument " and alignment to be "alignment" argument. |
GUIText(String text, Font font, int x, int y, int width, int height, [Alignment] alignment, float scale) | Creates a new GUIText with its current text defined to be "text" argument, font to be "font" argument, X position to be "x" argument, Y position to be "y" argument, width to be "width" argument, height to be "height" argument ", alignment to be "alignment" argument and scale to be "scale" argument. |
GUIText(Color color, String text, Font font, int x, int y, int width, int height, [Alignment] alignment, float scale) | Creates a new GUIText with its current color defined to be "color" argument, text to be "text" argument, font in the "font" argument, X position to be "x" argument, Y position to be "y" argument, width to be "width" argument ", height to be "height" argument, alignment to be "alignment" argument and scale to be "scale" argument. |
GUIText(Color color, String text, int x, int y, int width, int height) | Creates a new GUIText with its current color defined to be "color" argument, text to be "text" argument, X position to be "x" argument, Y position to be "y" argument, width to be "width" argument and height to be "height" argument. |
GUIText(Color color, String text, GUIRect guiRect) | Creates a new GUIText with its current color defined to be "color" argument, text to be "text" argument, and Rect(GUIRect) to be "guiRect" argument. |
GUIText(Color color, String text, int x, int y, int width, int height, int layer) | Creates a new GUIText with its current color defined to be "color" argument, text to be "text" argument, X position to be "x" argument, Y position to be "y" argument, width to be "width" argument, height to be "height" argument " and layer to be "layer" argument. |
GUIText(Color color, String text, GUIRect guiRect, int layer) | Creates a new GUIText with its current color defined to be "color" argument, text to be "text" argument, Rect(GUIRect) to be "guiRect" argument and layer to be "layer" argument. |