2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 01:03:48 +00:00
<class name= "Script" inherits= "Resource" version= "4.0" >
2017-09-12 20:42:36 +00:00
<brief_description >
A class stored as a resource.
</brief_description>
<description >
2019-11-30 18:15:06 +00:00
A class stored as a resource. A script extends the functionality of all objects that instance it.
2018-09-01 18:07:51 +00:00
The [code]new[/code] method of a script subclass creates a new instance. [method Object.set_script] extends an existing object, if that object's class matches one of the script's base classes.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
2020-08-05 12:43:40 +00:00
<link title= "Scripting" > https://docs.godotengine.org/en/latest/getting_started/step_by_step/scripting.html</link>
2017-09-12 20:42:36 +00:00
</tutorials>
<methods >
2021-06-17 22:03:09 +00:00
<method name= "can_instantiate" qualifiers= "const" >
2017-09-12 20:42:36 +00:00
<return type= "bool" >
</return>
<description >
2021-06-17 22:03:09 +00:00
Returns [code]true[/code] if the script can be instantiated.
2017-09-12 20:42:36 +00:00
</description>
</method>
2017-12-20 16:16:02 +00:00
<method name= "get_base_script" qualifiers= "const" >
<return type= "Script" >
</return>
<description >
2018-04-17 14:18:57 +00:00
Returns the script directly inherited by this script.
2017-12-20 16:16:02 +00:00
</description>
</method>
<method name= "get_instance_base_type" qualifiers= "const" >
2020-02-22 13:59:09 +00:00
<return type= "StringName" >
2017-12-20 16:16:02 +00:00
</return>
<description >
2018-09-01 18:07:51 +00:00
Returns the script's base type.
2017-12-20 16:16:02 +00:00
</description>
</method>
2019-09-24 09:44:48 +00:00
<method name= "get_property_default_value" >
<return type= "Variant" >
</return>
2020-02-22 13:59:09 +00:00
<argument index= "0" name= "property" type= "StringName" >
2019-09-24 09:44:48 +00:00
</argument>
<description >
2020-03-03 18:21:21 +00:00
Returns the default value of the specified property.
2019-09-24 09:44:48 +00:00
</description>
</method>
<method name= "get_script_constant_map" >
<return type= "Dictionary" >
</return>
<description >
2020-03-03 18:21:21 +00:00
Returns a dictionary containing constant names and their values.
2019-09-24 09:44:48 +00:00
</description>
</method>
<method name= "get_script_method_list" >
<return type= "Array" >
</return>
<description >
2020-03-03 18:21:21 +00:00
Returns the list of methods in this [Script].
2019-09-24 09:44:48 +00:00
</description>
</method>
<method name= "get_script_property_list" >
<return type= "Array" >
</return>
<description >
2020-03-03 18:21:21 +00:00
Returns the list of properties in this [Script].
2019-09-24 09:44:48 +00:00
</description>
</method>
<method name= "get_script_signal_list" >
<return type= "Array" >
</return>
<description >
2020-03-03 18:21:21 +00:00
Returns the list of user signals defined in this [Script].
2019-09-24 09:44:48 +00:00
</description>
</method>
2017-09-12 20:42:36 +00:00
<method name= "has_script_signal" qualifiers= "const" >
<return type= "bool" >
</return>
2020-02-22 13:59:09 +00:00
<argument index= "0" name= "signal_name" type= "StringName" >
2017-09-12 20:42:36 +00:00
</argument>
<description >
2018-09-01 18:07:51 +00:00
Returns [code]true[/code] if the script, or a base class, defines a signal with the given name.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "has_source_code" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2018-09-01 18:07:51 +00:00
Returns [code]true[/code] if the script contains non-empty source code.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "instance_has" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "base_object" type= "Object" >
</argument>
<description >
2018-09-01 18:07:51 +00:00
Returns [code]true[/code] if [code]base_object[/code] is an instance of this script.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "is_tool" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2018-09-01 18:07:51 +00:00
Returns [code]true[/code] if the script is a tool script. A tool script can run in the editor.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "reload" >
<return type= "int" enum= "Error" >
</return>
<argument index= "0" name= "keep_state" type= "bool" default= "false" >
</argument>
<description >
Reloads the script's class implementation. Returns an error code.
</description>
</method>
</methods>
2018-01-11 22:38:35 +00:00
<members >
<member name= "source_code" type= "String" setter= "set_source_code" getter= "get_source_code" >
2018-09-01 18:07:51 +00:00
The script source code or an empty string if source code is not available. When set, does not reload the class implementation automatically.
2018-01-11 22:38:35 +00:00
</member>
</members>
2017-09-12 20:42:36 +00:00
<constants >
</constants>
</class>