feat: updated engine version to 4.4-rc1

This commit is contained in:
Sara 2025-02-23 14:38:14 +01:00
parent ee00efde1f
commit 21ba8e33af
5459 changed files with 1128836 additions and 198305 deletions

View file

@ -16,6 +16,14 @@
Returns [code]true[/code] if objects can be instantiated from the specified [param class], otherwise returns [code]false[/code].
</description>
</method>
<method name="class_call_static" qualifiers="vararg">
<return type="Variant" />
<param index="0" name="class" type="StringName" />
<param index="1" name="method" type="StringName" />
<description>
Calls a static method on a class.
</description>
</method>
<method name="class_exists" qualifiers="const">
<return type="bool" />
<param index="0" name="class" type="StringName" />
@ -23,6 +31,13 @@
Returns whether the specified [param class] is available or not.
</description>
</method>
<method name="class_get_api_type" qualifiers="const">
<return type="int" enum="ClassDB.APIType" />
<param index="0" name="class" type="StringName" />
<description>
Returns the API type of [param class]. See [enum APIType].
</description>
</method>
<method name="class_get_enum_constants" qualifiers="const">
<return type="PackedStringArray" />
<param index="0" name="class" type="StringName" />
@ -99,6 +114,14 @@
Returns the default value of [param property] of [param class] or its ancestor classes.
</description>
</method>
<method name="class_get_property_getter">
<return type="StringName" />
<param index="0" name="class" type="StringName" />
<param index="1" name="property" type="StringName" />
<description>
Returns the getter method name of [param property] of [param class].
</description>
</method>
<method name="class_get_property_list" qualifiers="const">
<return type="Dictionary[]" />
<param index="0" name="class" type="StringName" />
@ -107,6 +130,14 @@
Returns an array with all the properties of [param class] or its ancestry if [param no_inheritance] is [code]false[/code].
</description>
</method>
<method name="class_get_property_setter">
<return type="StringName" />
<param index="0" name="class" type="StringName" />
<param index="1" name="property" type="StringName" />
<description>
Returns the setter method name of [param property] of [param class].
</description>
</method>
<method name="class_get_signal" qualifiers="const">
<return type="Dictionary" />
<param index="0" name="class" type="StringName" />
@ -218,4 +249,21 @@
</description>
</method>
</methods>
<constants>
<constant name="API_CORE" value="0" enum="APIType">
Native Core class type.
</constant>
<constant name="API_EDITOR" value="1" enum="APIType">
Native Editor class type.
</constant>
<constant name="API_EXTENSION" value="2" enum="APIType">
GDExtension class type.
</constant>
<constant name="API_EDITOR_EXTENSION" value="3" enum="APIType">
GDExtension Editor class type.
</constant>
<constant name="API_NONE" value="4" enum="APIType">
Unknown class type.
</constant>
</constants>
</class>