03-09-2025, 05:47 PM
As I mentioned, it all steps back to this:
Variable width fonts have no set fontwidth, so you can't just move character width left/right, so it moves by pixels instead.
Code: (Select All)
Screen 12
$Color:0
f = _LoadFont("courbd.ttf", 16)
g = _LoadFont("courbd.ttf", 16, "MONOSPACE")
_Font f
Print _FontWidth, _FontHeight, "notice the fontwidth with variable width?"
_Font g
Locate 2: Print _FontWidth, _FontHeight; " vs monospaced"
Variable width fonts have no set fontwidth, so you can't just move character width left/right, so it moves by pixels instead.