The master branch was reverted to 1.7 because it was very unstable (bugs and stuff that wasn't mentioned on the documentation page yet) - features will come back with 2.0 - fixed debug window - fixed flexbox not sending drag events to it's children - small docs updates for 1.7 - removed the examples because the are outdated
688 B
688 B
blit
Description
Sets or modifies text, foreground and background color.
Parameters
stringtext - The text to be placed at the specified positionstringforeground - A string representing the foreground colorstringbackground - A string representing the background colornumberx - The x-coordinate of the text position.numbery - The y-coordinate of the text position.
Returns
objectThe object in use
Usage
- Creates a new image object, adds a frame, and sets the text in the active frame.
local mainFrame = basalt.createFrame()
local aImage = mainFrame:addImage():addFrame():blit("Hello", "fffff", "00000", 1, 1)