Prototype/Font: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Basics == Fonts are used in all gui in the game. == Mandatory properties == === type === '''Type''': Types/string Must be "font". === name === '''Type''': Types/s...") |
(→Optional properties: found out what this does :)) |
||
Line 26: | Line 26: | ||
=== border === | === border === | ||
'''Type''': [[Types/bool]] | '''Type''': [[Types/bool]] | ||
Whether the font has a border. | |||
=== border_color === | === border_color === | ||
'''Type''': | '''Type''': [[Types/color]] | ||
The color of the border, if enabled. | |||
== Example == | == Example == |
Revision as of 15:10, 25 October 2017
Basics
Fonts are used in all gui in the game.
Mandatory properties
type
Type: Types/string
Must be "font".
name
Type: Types/string
Name of the font.
size
Type: Types/uint
Size of the font.
from
Type: Types/string
Optional properties
border
Type: Types/bool
Whether the font has a border.
border_color
Type: Types/color
The color of the border, if enabled.
Example
{
type = "font",
name = "default-button",
from = "default-bold",
size = 18
},