Difference between revisions of "love.graphics.setFont"

m (1 revision: Imported docs from potato.)
Line 1: Line 1:
  
 +
Set an already-loaded Font as the current font.
 +
 +
This function doesn't allocate a new font and can be used in [[love.draw]]
  
 
== Function ==
 
== Function ==
Line 41: Line 44:
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Set an already-loaded Font as the current font.
 +
}}

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

Function

Synopsis

love.graphics.setFont( font )

Arguments

Font font
The Font object to use.

Returns

Nothing.

Function

Synopsis

love.graphics.setFont( filename, size )

Arguments

string filename
The filepath to the font.
number size (12)
The size of the font.

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

See Also