Version 0.2.0
LÖVE Documentation
OverviewLicenceCreditsGetting started
Devices
love.objectslove.graphicslove.audiolove.keyboardlove.mouselove.filesystemlove.timer
Types
AnimationColorFontImageMusicSound
Callbacks
loadupdatedrawmousepressedmousereleasedkeypressedkeyreleased
Miscellaneous
ConstantsConfig filesKeyboard shortcuts
Function
love.graphics:setFont( font )
Usage
love.graphics:setFont( font )
Arguments
fontA Font object.
Returns
Nothing
Examples
Example 1: Create and set a large font. big_text = love.objects:newFont("Vera.tff", 30);
love.graphics:setFont(big_text);