I'm new to LÖVE and using SUIT to create a user interface for my game in LÖVE and I'm trying to figure out what kind of text formatting can be done on text created with SUIT.
For example, I have some text generated like this:
Code: Select all
suit.Label("PRO", {align = "center", font = Libel128, color = colorBlue}, suit.layout:row(400,60))
Code: Select all
Libel128 = love.graphics.newFont("fonts/libel-suit-rg.ttf", 128)
colorBlue = {normal = {bg = {71,134,206}, fg = {71,134,206}}}
I couldn't find anything on this in the documentation, so I figured I'd ask here.