Difference between revisions of "Font"
From GiderosMobile
| Line 15: | Line 15: | ||
| === Example === | === Example === | ||
| − | '''Use these two files to create a  | + | '''Use these two files to create a Font object''' | 
| <source lang="lua"> | <source lang="lua"> | ||
| local font = Font.new("font.txt", "font.png") | local font = Font.new("font.txt", "font.png") | ||
Revision as of 22:18, 5 June 2023
Supported platforms: 






Available since: Gideros 2011.6
Inherits from: FontBase
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 the character glyphs
- a .png file of the font
Example
Use these two files to create a Font object
local font = Font.new("font.txt", "font.png")
| MethodsFont.getDefault gets the default font | EventsConstants | 

