feat: updated engine version to 4.4-rc1
This commit is contained in:
parent
ee00efde1f
commit
21ba8e33af
5459 changed files with 1128836 additions and 198305 deletions
|
|
@ -329,6 +329,14 @@
|
|||
Returns the font hinting mode. Used by dynamic fonts only.
|
||||
</description>
|
||||
</method>
|
||||
<method name="_font_get_keep_rounding_remainders" qualifiers="virtual const">
|
||||
<return type="bool" />
|
||||
<param index="0" name="font_rid" type="RID" />
|
||||
<description>
|
||||
[b]Optional.[/b]
|
||||
Returns glyph position rounding behavior. If set to [code]true[/code], when aligning glyphs to the pixel boundaries rounding remainders are accumulated to ensure more uniform glyph distribution. This setting has no effect if subpixel positioning is enabled.
|
||||
</description>
|
||||
</method>
|
||||
<method name="_font_get_kerning" qualifiers="virtual const">
|
||||
<return type="Vector2" />
|
||||
<param index="0" name="font_rid" type="RID" />
|
||||
|
|
@ -496,6 +504,14 @@
|
|||
Returns a string containing all the characters available in the font.
|
||||
</description>
|
||||
</method>
|
||||
<method name="_font_get_supported_glyphs" qualifiers="virtual const">
|
||||
<return type="PackedInt32Array" />
|
||||
<param index="0" name="font_rid" type="RID" />
|
||||
<description>
|
||||
[b]Required.[/b]
|
||||
Returns an array containing all glyph indices in the font.
|
||||
</description>
|
||||
</method>
|
||||
<method name="_font_get_texture_count" qualifiers="virtual const">
|
||||
<return type="int" />
|
||||
<param index="0" name="font_rid" type="RID" />
|
||||
|
|
@ -896,6 +912,15 @@
|
|||
Sets font hinting mode. Used by dynamic fonts only.
|
||||
</description>
|
||||
</method>
|
||||
<method name="_font_set_keep_rounding_remainders" qualifiers="virtual">
|
||||
<return type="void" />
|
||||
<param index="0" name="font_rid" type="RID" />
|
||||
<param index="1" name="keep_rounding_remainders" type="bool" />
|
||||
<description>
|
||||
[b]Optional.[/b]
|
||||
Sets glyph position rounding behavior. If set to [code]true[/code], when aligning glyphs to the pixel boundaries rounding remainders are accumulated to ensure more uniform glyph distribution. This setting has no effect if subpixel positioning is enabled.
|
||||
</description>
|
||||
</method>
|
||||
<method name="_font_set_kerning" qualifiers="virtual">
|
||||
<return type="void" />
|
||||
<param index="0" name="font_rid" type="RID" />
|
||||
|
|
@ -1162,6 +1187,13 @@
|
|||
Returns the name of the server interface.
|
||||
</description>
|
||||
</method>
|
||||
<method name="_get_support_data" qualifiers="virtual const">
|
||||
<return type="PackedByteArray" />
|
||||
<description>
|
||||
[b]Optional.[/b]
|
||||
Returns default TextServer database (e.g. ICU break iterators and dictionaries).
|
||||
</description>
|
||||
</method>
|
||||
<method name="_get_support_data_filename" qualifiers="virtual const">
|
||||
<return type="String" />
|
||||
<description>
|
||||
|
|
@ -1282,6 +1314,15 @@
|
|||
Returns number of text spans added using [method _shaped_text_add_string] or [method _shaped_text_add_object].
|
||||
</description>
|
||||
</method>
|
||||
<method name="_shaped_get_span_embedded_object" qualifiers="virtual const">
|
||||
<return type="Variant" />
|
||||
<param index="0" name="shaped" type="RID" />
|
||||
<param index="1" name="index" type="int" />
|
||||
<description>
|
||||
[b]Required.[/b]
|
||||
Returns text embedded object key.
|
||||
</description>
|
||||
</method>
|
||||
<method name="_shaped_get_span_meta" qualifiers="virtual const">
|
||||
<return type="Variant" />
|
||||
<param index="0" name="shaped" type="RID" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue