draw.Text
Draw text at x, y.
Syntax
draw.Text(string:text)
Parameters
string:text
The text to draw.
Example
callbacks.Register("Draw", function()
draw.Color(255, 138, 130, 255);
draw.Text(60, 60, "Text");
end)
Draw text at x, y.
draw.Text(string:text)
string:text
The text to draw.
callbacks.Register("Draw", function()
draw.Color(255, 138, 130, 255);
draw.Text(60, 60, "Text");
end)