What is Incisor?
Tutorials
Key Concepts
Reddit
Stack Overflow
Deprecation Schedule

FontDefinition()

Object defining a font within this project. Fonts originate from files within a project's "Assets" directory, Either by including '.ttf' or '.otf' files, or by including a specialized group of pngs whose names end with '_Char[X]' that must include '_Char0'. [NON-INSTANTIABLE]

new FontDefinition()

MEMBERS

characterWidth :number

Number determining the basic width of a character in this font. Some of the values used by TextFormats, Texts, and TextBoxes to arrange characters in fonts are denoted in terms of a proportion of this value. For example if the kerning of a given TextBox's TextFormat is .5, then all characters within the TextBox will be spaced apart by half of this 'characterWidth' value. This value originally defaults to the width of the null character provided (Char0), but can be changed in ProjectSettings or runtime.

kerningAdjustment :number

A number that affects the layout width of all of the characters in this font. The number is expressed in terms of multiples 'characterWidth' value.

lineHeight :number

Number determining the line height of this font. This value originally defaults to the height of the null character provided (Char0), but can be changed.