Difference between revisions of "Font"
From GiderosMobile
(removed language stuff) |
|||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
| − | |||
<!-- GIDEROSOBJ:Font --> | <!-- GIDEROSOBJ:Font --> | ||
| − | ''' | + | '''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]]<br/> |
| − | ''' | + | '''Available since:''' Gideros 2011.6<br/> |
| − | ''' | + | '''Inherits from:''' [[FontBase]]<br/> |
| − | === | + | === Description === |
| − | The | + | The '''Font''' class is used to load fonts created by "Gideros Font Creator". |
[[File:Font creator.png]] | [[File:Font creator.png]] | ||
| − | Gideros Font Creator exports two files: | + | 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 `Font` object | + | '''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") | ||
| Line 21: | Line 22: | ||
{|- | {|- | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
| − | === | + | === Methods === |
| − | [[ | + | [[Font.getDefault]] ''gets the default font''<br/><!--GIDEROSMTD:Font.getDefault() gets the default font--> |
| − | [[ | + | [[Font.new]] ''creates a new Font object''<br/><!--GIDEROSMTD:Font.new(txtfile,imagefile,filtering) creates a new Font object--> |
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
| − | === | + | === Events === |
| − | === | + | === Constants === |
|} | |} | ||
{{GIDEROS IMPORTANT LINKS}} | {{GIDEROS IMPORTANT LINKS}} | ||
Revision as of 03:08, 13 March 2021
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 |
