2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name= "BitmapFont" inherits= "Font" category= "Core" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
2019-12-26 06:42:02 +01:00
Renders text using fonts under the [url=https://www.angelcode.com/products/bmfont/]BMFont[/url] format.
Handles files with the [code].fnt[/code] extension
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2017-10-10 23:50:49 +02:00
Renders text using [code]*.fnt[/code] fonts containing texture atlases. Supports distance fields. For using vector font files like TTF directly, see [DynamicFont].
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "add_char" >
<return type= "void" >
</return>
<argument index= "0" name= "character" type= "int" >
</argument>
<argument index= "1" name= "texture" type= "int" >
</argument>
<argument index= "2" name= "rect" type= "Rect2" >
</argument>
<argument index= "3" name= "align" type= "Vector2" default= "Vector2( 0, 0 )" >
</argument>
<argument index= "4" name= "advance" type= "float" default= "-1" >
</argument>
<description >
2019-06-22 01:04:47 +02:00
Adds a character to the font, where [code]character[/code] is the Unicode value, [code]texture[/code] is the texture index, [code]rect[/code] is the region in the texture (in pixels!), [code]align[/code] is the (optional) alignment for the character and [code]advance[/code] is the (optional) advance.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "add_kerning_pair" >
<return type= "void" >
</return>
<argument index= "0" name= "char_a" type= "int" >
</argument>
<argument index= "1" name= "char_b" type= "int" >
</argument>
<argument index= "2" name= "kerning" type= "int" >
</argument>
<description >
2019-03-29 23:37:35 +01:00
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.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "add_texture" >
<return type= "void" >
</return>
<argument index= "0" name= "texture" type= "Texture" >
</argument>
<description >
2019-03-29 23:37:35 +01:00
Adds a texture to the [BitmapFont].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "clear" >
<return type= "void" >
</return>
<description >
2017-10-10 23:50:49 +02:00
Clears all the font data and settings.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "create_from_fnt" >
<return type= "int" enum= "Error" >
</return>
<argument index= "0" name= "path" type= "String" >
</argument>
<description >
2017-10-10 23:50:49 +02:00
Creates a BitmapFont from the [code]*.fnt[/code] file at [code]path[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_char_size" qualifiers= "const" >
<return type= "Vector2" >
</return>
<argument index= "0" name= "char" type= "int" >
</argument>
<argument index= "1" name= "next" type= "int" default= "0" >
</argument>
<description >
2017-10-10 23:50:49 +02:00
Returns the size of a character, optionally taking kerning into account if the next character is provided.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_kerning_pair" qualifiers= "const" >
<return type= "int" >
</return>
<argument index= "0" name= "char_a" type= "int" >
</argument>
<argument index= "1" name= "char_b" type= "int" >
</argument>
<description >
2017-10-10 23:50:49 +02:00
Returns a kerning pair as a difference.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_texture" qualifiers= "const" >
<return type= "Texture" >
</return>
<argument index= "0" name= "idx" type= "int" >
</argument>
<description >
2017-10-10 23:50:49 +02:00
Returns the font atlas texture at index [code]idx[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_texture_count" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2017-10-10 23:50:49 +02:00
Returns the number of textures in the BitmapFont atlas.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "ascent" type= "float" setter= "set_ascent" getter= "get_ascent" default= "0.0" >
2017-10-10 23:50:49 +02:00
Ascent (number of pixels above the baseline).
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "distance_field" type= "bool" setter= "set_distance_field_hint" getter= "is_distance_field_hint" default= "false" >
2018-12-20 13:46:54 +01:00
If [code]true[/code], distance field hint is enabled.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "fallback" type= "BitmapFont" setter= "set_fallback" getter= "get_fallback" >
2017-10-10 23:50:49 +02:00
The fallback font.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "height" type= "float" setter= "set_height" getter= "get_height" default= "1.0" >
2017-10-10 23:50:49 +02:00
Total font height (ascent plus descent) in pixels.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
</constants>
</class>