Making some great games for #playdate right now: https://neverall.itch.io/
I needed to scale up my font here: to be 2x size, and wanted a easy to call function to do it, like so: DrawText('Which elf are you?', Cx, Cy - 40, 'center', 2) This is how I laid things out in my utils.lua file: --- top of code Gfx = playdate.graphics Font = Gfx.font.new('fonts/robkohr-mono-5x8') Gfx.setFont(Font) -- down in util functions DrawScaledTextImageCache = {} DrawScaledTextImageCacheById = {} -- Use id for something that has frequently changing content so not to fill memory func...
Neverall Games
Got profile selection, level selection, and intro animation placeholder working