Script

Inherits:Resource<Reference<Object

Inherited By:CSharpScript,GDScript,NativeScript,PluginScript,VisualScript

A class stored as a resource.

Description

A class stored as a resource. A script extends the functionality of all objects that instance it.

Thenew method of a script subclass creates a new instance.Object.set_script extends an existing object, if that object's class matches one of the script's base classes.

Tutorials

Properties

String

source_code

Methods

bool

can_instance()const

Script

get_base_script()const

String

get_instance_base_type()const

Variant

get_property_default_value(String property)

Dictionary

get_script_constant_map()

Array

get_script_method_list()

Array

get_script_property_list()

Array

get_script_signal_list()

bool

has_script_signal(String signal_name)const

bool

has_source_code()const

bool

instance_has(Object base_object)const

bool

is_tool()const

Error

reload(bool keep_state=false)

Property Descriptions

Setter

set_source_code(value)

Getter

get_source_code()

The script source code or an empty string if source code is not available. When set, does not reload the class implementation automatically.

Method Descriptions

Returnstrue if the script can be instanced.


Returns the script directly inherited by this script.


Returns the script's base type.


Returns the default value of the specified property.


Returns a dictionary containing constant names and their values.


  • Arrayget_script_method_list()

Returns the list of methods in thisScript.


  • Arrayget_script_property_list()

Returns the list of properties in thisScript.


  • Arrayget_script_signal_list()

Returns the list of user signals defined in thisScript.


Returnstrue if the script, or a base class, defines a signal with the given name.


Returnstrue if the script contains non-empty source code.


Returnstrue ifbase_object is an instance of this script.


Returnstrue if the script is a tool script. A tool script can run in the editor.


Reloads the script's class implementation. Returns an error code.