![]() | |
Vector |
public class VectorFontFactory
The VectorFontFactory type exposes the following members.
Name | Description | |
---|---|---|
![]() | VectorFontFactory | Constructor. The specified fontName must be loaded by using TrueTypeFontLoader. |
Name | Description | |
---|---|---|
![]() | BezierCurveSegmentsCount | Gets or sets a number that specifies into how many segments (individual straight lines) each bezier curve from the character glyph is converted. Smaller values produce smaller meshes or less outline positions (are faster to render), bigger values produce more accurate fonts but are slower to render. This value can be changed before any call that generates the mesh or outline positions. Default value is 8. |
![]() | CharSpacing | Gets or sets amount of additional space between characters. The value is specified in EM units (1 is glyph height). Default value is 0 that does not add any additional space. This value can be negative to create more condensed text or positive to increase the gaps between characters. Changing this value will change only the newly generated text and not the already generated text. |
![]() | FontName | Gets the font name that is used by this VectorFontFactory. |
![]() | FontStretch | Gets or sets the amount of horizontal font stretch. The default value 1 (100%) does not stretch the font. Changing this value will change only the newly generated text and not the already generated text. |
![]() | LineHeight | Gets or sets the line height that is used by this VectorFontFactory. The value is specified in EM units (1 is glyph height). Changing this value will change only the newly generated text and not the already generated text. Default value is 1.0f. |
![]() | SpaceSize | Gets or sets the width of the space character that is used by this VectorFontFactory. The value is specified in EM units (1 is glyph size). Changing this value will change only the newly generated text and not the already generated text. Default value is 0.333f. |
![]() | TabSize | Gets or sets the tab size (how many spaces are used to represent one tab) that is used by this VectorFontFactory. Changing this value will change only the newly generated text and not the already generated text. Default value is 4. |
Name | Description | |
---|---|---|
![]() ![]() | BezierInterpolate | |
![]() | CreateIndividualTextMeshes | CreateIndividualTextMeshes creates StandardMesh objects for each character from the specified text. |
![]() | CreateIndividualTextOutlinePositions | CreateIndividualTextOutlinePositions generates 2D outline positions for the specified text. The returned list contains tuples with the following values: index of the character in the text, the character and the outline positions. Note that each character can have multiple Vector2 array, that means that multiple items in the returned list can be created from a single character. The coordinate axis (0, 0) starts at the baseline of the first character. |
![]() | CreateTextMesh | CreateTextMesh creates a StandardMesh with the specified text and at the specified position, direction and size. The text is represented by one StandardMesh that is created from triangulated character glyphs. |
![]() | CreateTextOutlinePositions | Returns an array of Vector3 arrays that define outline positions for the specified text. |
![]() | GetBoundingRectangle | Returns the start or top-left position (as Vector3) and size (as Vector2) of the rectangle that contains the specified text. |
![]() | GetTextSize | Returns the size of the specified text. |