love.graphics.setFont
Contents
Function
Synopsis
love.graphics.setFont( font )
Arguments
Font font
- The Font object to use.
Returns
Nothing.
Function
Synopsis
love.graphics.setFont( filename, size )
Arguments
Returns
Nothing.
Function
Synopsis
love.graphics.setFont( size )
Arguments
number size (12)
- The size of the font.
Returns
Nothing.
Examples
Draw some text with default font, 18px
love.graphics.setFont(18)
function love.draw()
love.graphics.print("Hello", 300, 300)
end