I have been playing some Balatro lately, a game made in Love2D, and I was wondering how you would edit the size, rotation, or position of individual characters when printing text. Here is an example:
Screenshot 2025-03-13 191926.png (28.85 KiB) Viewed 228 times
break the characters into a table and iterate over the ipairs
something like this (off the top of my head)
```
local width_of_container
for index, character in ipairs(string) do
love.graphics.setFont(font)
local x = text:getwidth(
love.graphics.translate(x,0)
love.graphics.rotate(...)
done
```