Methods
-
add_text_input(x, y, initial_text, size, colour)
-
Creates a new text object and adds it to the game.
Check out the third party documentation for a more in depth explanation.Parameters:
Name Type Description x
Number the x coordinate to display the text at
y
Number the y coordinate to display the text at
initial_text
String the text to display
size
Number the font size to display the text with
colour
the colour to display the text with
Code Equivalent:
game.add.text(x, y, initial_text, fontSize: \`\sizepx\`, fill: colour)
-
set_text(object, text_string)
-
Sets the text to display on the text object.
Check out the third party documentation for a more in depth explanation.Parameters:
Name Type Description object
text object to set the text for
text_string
String text to display on the object
Code Equivalent:
variable_object.text = value_text;