Difference between revisions of "love.font"

(5 intermediate revisions by 4 users not shown)
Line 2: Line 2:
 
Allows you to work with fonts.
 
Allows you to work with fonts.
 
== Types ==
 
== Types ==
{{#ask: [[Category:Types]] [[parent::love.font]] [[Since::<071]]
+
{{#ask: [[Category:Types]] [[parent::love.font]] [[Concept:Current]]
 
| headers=hide
 
| headers=hide
 +
| format=template
 +
| template=ListingFields
 +
| introtemplate=ListingIntro
 +
| outrotemplate=ListingOutro
 
| ?Description
 
| ?Description
 +
| ?PrettySince
 +
| ?PrettyRemoved
 
}}
 
}}
 
== Functions ==
 
== Functions ==
{{#ask: [[Category:Functions]] [[parent::love.font]] [[Since::<071]]
+
{{#ask: [[Category:Functions]] [[parent::love.font]] [[Concept:Current]]
 
| headers=hide
 
| headers=hide
 +
| format=template
 +
| template=ListingFields
 +
| introtemplate=ListingIntro
 +
| outrotemplate=ListingOutro
 
| ?Description
 
| ?Description
 +
| ?PrettySince
 +
| ?PrettyRemoved
 
}}
 
}}
 
[[Category:Modules]]
 
[[Category:Modules]]
 
{{#set:Description=Allows you to work with fonts.}}
 
{{#set:Description=Allows you to work with fonts.}}
{{#set:Since=000}}
 
 
== See Also ==
 
== See Also ==
 +
* [[parent::Font]]
 
* [[parent::love]]
 
* [[parent::love]]
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.font}}
 
{{i18n|love.font}}

Revision as of 23:03, 29 March 2013

Available since LÖVE 0.7.0
This module is not supported in earlier versions.

Allows you to work with fonts.

Types

FontData A FontData represents a font. Added since 0.7.0 Removed in 0.8.0
GlyphData A GlyphData represents a drawable symbol of a font. Added since 0.7.0
Rasterizer A Rasterizer represents font data and glyphs. Added since 0.7.0

Functions

love.font.newBMFontRasterizer Creates a new BMFont Rasterizer. Added since 0.10.0
love.font.newFontData Creates a new FontData. Added since 0.7.0 Removed in 0.8.0
love.font.newGlyphData Creates a new GlyphData. Added since 0.7.0
love.font.newImageRasterizer Creates a new Image Rasterizer. Added since 0.10.0
love.font.newRasterizer Creates a new Rasterizer. Added since 0.7.0
love.font.newTrueTypeRasterizer Creates a new TrueType Rasterizer. Added since 0.10.0

See Also

Other Languages