BitmapFont

Inherits: Font < Resource < Reference < Object

Category: Core

Brief Description

Renders text using *.fnt fonts.

Properties

floatascent
booldistance_field
BitmapFontfallback
floatheight

Methods

voidadd_char ( int character, int texture, Rect2 rect, Vector2 align=Vector2( 0, 0 ), float advance=-1 )
voidadd_kerning_pair ( int char_a, int char_b, int kerning )
voidadd_texture ( Texture texture )
voidclear ( )
Errorcreate_from_fnt ( String path )
Vector2get_char_size ( int char, int next=0 ) const
intget_kerning_pair ( int char_a, int char_b ) const
Textureget_texture ( int idx ) const
intget_texture_count ( ) const

Description

Renders text using *.fnt fonts containing texture atlases. Supports distance fields. For using vector font files like TTF directly, see DynamicFont.

Property Descriptions

Setterset_ascent(value)
Getterget_ascent()

Ascent (number of pixels above the baseline).


  • bool distance_field
Setterset_distance_field_hint(value)
Getteris_distance_field_hint()

If true, distance field hint is enabled.


Setterset_fallback(value)
Getterget_fallback()

The fallback font.


Setterset_height(value)
Getterget_height()

Total font height (ascent plus descent) in pixels.

Method Descriptions

Adds a character to the font, where character is the unicode value, texture is the texture index, rect is the region in the texture (in pixels!), align is the (optional) alignment for the character and advance is the (optional) advance.


  • void add_kerning_pair ( int char_a, int char_b, int kerning )

Adds a kerning pair to the BitmapFont as a difference. Kerning pairs are special cases where a typeface advance is determined by the next character.


  • void add_texture ( Texture texture )

Adds a texture to the BitmapFont.


  • void clear ( )

Clears all the font data and settings.


Creates a BitmapFont from the *.fnt file at path.


Returns the size of a character, optionally taking kerning into account if the next character is provided.


  • int get_kerning_pair ( int char_a, int char_b ) const

Returns a kerning pair as a difference.


Returns the font atlas texture at index idx.


  • int get_texture_count ( ) const

Returns the number of textures in the BitmapFont atlas.