GlyphPackingMode
The modes available when packing glyphs into an atlas texture.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Enum
- Namespace: UnityEngine.TextCore.LowLevel
- Assembly: UnityEngine.TextCoreFontEngineModule
public enum GlyphPackingMode
Fields
Value | Description |
|---|---|
| BestAreaFit | Place the glyph into the smallest free space available in which it can fit. |
| BestLongSideFit | Place the glyph against the longer side of a free space to minimize the length of the longer leftover side. |
| BestShortSideFit | Place the glyph against the short side of a free space to minimize the length of the shorter leftover side. |
| BottomLeftRule | Place the glyph into available free space in a Tetris like fashion. |
| ContactPointRule | Place the glyph into the available free space by trying to maximize the contact point between it and other glyphs. |