The `love.graphics.print` doesn't do anything at all
Closed this issue · 6 comments
theycallhermax commented
I ran the following script:
function love.load()
love.graphics.setColor(255, 255, 255)
end
function love.draw()
love.graphics.print("Hello World!", 0, 0)
end
And all it showed was a blank screen, so I thought that it was too into the center, so I moved it down a little, and nothing happened. I think it's because I didn't call the functions... And the above functions only worked on LOVE.
htv04 commented
Try moving the text lower, FreeTypeGX renders fonts above the set Y value for some reason. I'm going to try to fix it after I work on adding support for more textures
theycallhermax commented
So, would 100 work well enough?
htv04 commented
So, would -100 work well enough?
20 (positive) is probably good for getting it on screen
theycallhermax commented
OK.
htv04 commented
Did that work for you?
theycallhermax commented
Yes.