Difference between revisions of "Font"
From GiderosMobile
Line 2: | Line 2: | ||
'''Supported platforms:''' android, ios, mac, pc<br/> | '''Supported platforms:''' android, ios, mac, pc<br/> | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
− | === Description === | + | === <translate>Description</translate> === |
<translate>The [[Special:MyLanguage/Font|Font]] class is used to load fonts created by "Gideros Font Creator".<br /> | <translate>The [[Special:MyLanguage/Font|Font]] class is used to load fonts created by "Gideros Font Creator".<br /> | ||
<br /> | <br /> | ||
Line 9: | Line 9: | ||
<br /> | <br /> | ||
Gideros Font Creator exports two files: A [[Special:MyLanguage/.txt|.txt]] file that specifies the positions of character glyph a [[Special:MyLanguage/.png|.png]] file of font.<br /></translate> | Gideros Font Creator exports two files: A [[Special:MyLanguage/.txt|.txt]] file that specifies the positions of character glyph a [[Special:MyLanguage/.png|.png]] file of font.<br /></translate> | ||
− | === Examples === | + | === <translate>Examples</translate> === |
'''Use these two files to create `Font` object as:'''<br/> | '''Use these two files to create `Font` object as:'''<br/> | ||
<source lang="lua">local font = Font.new("font.txt", "font.png")</source> | <source lang="lua">local font = Font.new("font.txt", "font.png")</source> | ||
{|- | {|- | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === Methods === | + | === <translate>Methods</translate> === |
[[Special:MyLanguage/Font.getDefault|Font.getDefault]] ''<translate>Get default font</translate>''<br/> | [[Special:MyLanguage/Font.getDefault|Font.getDefault]] ''<translate>Get default font</translate>''<br/> | ||
[[Special:MyLanguage/Font.new|Font.new]] ''<translate>creates a new Font object</translate>''<br/> | [[Special:MyLanguage/Font.new|Font.new]] ''<translate>creates a new Font object</translate>''<br/> | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === Events === | + | === <translate>Events</translate> === |
− | === Constants === | + | === <translate>Constants</translate> === |
|} | |} |
Revision as of 07:26, 24 August 2018
Supported platforms: android, ios, mac, pc
Available since: Gideros 2011.6
Description
The Font class is used to load fonts created by "Gideros Font Creator".
Gideros Font Creator exports two files: A .txt file that specifies the positions of character glyph a .png file of font.
Examples
Use these two files to create `Font` object as:
local font = Font.new("font.txt", "font.png")
MethodsFont.getDefault Get default font |
EventsConstants |