Does "isFontReady()" work?
Hi! Maybe anybody can help me with screen.isFontReady() ... this does not seem to work for me. See my code below. The word "screen" is written several times on the screen, first in default-font, after 5 times in the fontName-font. But it should not have been drawn at all before it would have been "FontReady", is this correct?
Thank you! Kristian
init = function()
fontName="paper_cutout"
asset_manager.loadFont(fontName)
image = new Image(50,50)
y=-100
end
update = function()
end
draw = function()
y+=10
if screen.isFontReady(fontName) then
screen.setFont(fontName)
screen.drawText("screen",-50,y,20,"rgb(200,0,0)")
end
end

