class in UnityEngine.TextCore.LowLevel
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseThe FontEngine is used to access data from source font files. This includes information about individual characters, glyphs and relevant metrics typically used in the process of text parsing, layout and rendering.
The types of font files supported are TrueType (.ttf, .ttc) and OpenType (.otf).
The FontEngine is also used to raster the visual representation of characters known as glyphs in a given font atlas texture.
DestroyFontEngine | Destroy and unload resources used by the Font Engine. |
GetFaceInfo | Get the FaceInfo for the currently loaded and sized typeface. |
InitializeFontEngine | Initialize the Font Engine and required resources. |
LoadFontFace | Load a source font file. |
SetFaceSize | Set the size of the currently loaded font face. |
TryGetGlyphIndex | Try to get the glyph index for the character at the given Unicode value. |
TryGetGlyphWithIndexValue | Try loading the glyph for the given index value and if available populate the glyph. |
TryGetGlyphWithUnicodeValue | Try loading a glyph for the given unicode value. If available, populates the glyph and returns true. Otherwise returns false and populates the glyph with the .notdef / missing glyph data. |