function love.load()
bombing = love.graphics.newImageFont("bombing.png", " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890,.-;:_!\"$/()=?#*+", 1)
end
function love.draw()
love.graphics.setFont(bombing)
love.graphics.print("Hello World 123", 0, 0)
end
Last edited by Ratchet on Thu Jun 06, 2019 12:05 pm, edited 1 time in total.
It has some pink with alpha = 1/255 which seems to be confusing the separator.
I've fixed it with gimp, first selecting the pink by colour with threshold 0, then transferring the alpha to a layer mask, applying a threshold to the mask (so that alpha is either 255/255 or 0/255 in the areas that were pink) and saving.
You could suggest in the bug tracker to consider the alpha when separating the characters, to avoid issues like this.
Last edited by pgimeno on Thu Jun 06, 2019 3:47 pm, edited 1 time in total.