Difference between revisions of "love.graphics.setFont"
m (1 revision: Importing from potato (again).) |
|
(No difference)
|
Revision as of 16:17, 14 February 2010
Set an already-loaded Font as the current font.
This function doesn't allocate a new font and can be used in love.draw
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