Internationalized font and text drawing support. Font contains a Unicode-compatible character set, as well as the ability to draw it with variable width, ascent, descent and kerning. For creating fonts from TTF files (or other font formats), see the editor support for fonts. [b]Note:[/b] If a DynamicFont doesn't contain a character used in a string, the character in question will be replaced with codepoint [code]0xfffd[/code] if it's available in the DynamicFont. If this replacement character isn't available in the DynamicFont, the character will be hidden without displaying any replacement character in the string. [b]Note:[/b] If a BitmapFont doesn't contain a character used in a string, the character in question will be hidden without displaying any replacement character in the string. Draw [code]string[/code] into a canvas item using the font at a given position, with [code]modulate[/code] color, and optionally clipping the width. [code]position[/code] specifies the baseline, not the top. To draw from the top, [i]ascent[/i] must be added to the Y axis. See also [method CanvasItem.draw_string]. Draw character [code]char[/code] into a canvas item using the font at a given position, with [code]modulate[/code] color, and optionally kerning if [code]next[/code] is passed. clipping the width. [code]position[/code] specifies the baseline, not the top. To draw from the top, [i]ascent[/i] must be added to the Y axis. The width used by the character is returned, making this function useful for drawing strings character by character. Returns the font ascent (number of pixels above the baseline). Returns the size of a character, optionally taking kerning into account if the next character is provided. Returns the font descent (number of pixels below the baseline). Returns the total font height (ascent plus descent) in pixels. Returns the size of a string, taking kerning and advance into account. Returns the size that the string would have with word wrapping enabled with a fixed [code]width[/code]. Returns [code]true[/code] if the font has an outline. After editing a font (changing size, ascent, char rects, etc.). Call this function to propagate changes to controls that might use it.