Inherits: Resource < RefCounted < Object
Inherited By: CSharpScript, GDScript, ScriptExtension
A class stored as a resource.
A class stored as a resource. A script extends the functionality of all objects that instantiate it.
This is the base class for all scripts and should not be used directly. Trying to create a new script with this class will result in an error.
The new 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.
can_instantiate ( ) const | |
get_base_script ( ) const | |
get_instance_base_type ( ) const | |
get_property_default_value ( StringName property ) | |
has_script_signal ( StringName signal_name ) const | |
has_source_code ( ) const | |
instance_has ( Object base_object ) const | |
is_abstract ( ) const | |
is_tool ( ) const | |
The script source code or an empty string if source code is not available. When set, does not reload the class implementation automatically.
Returns true if the script can be instantiated.
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.
Returns the list of methods in this Script.
Returns the list of properties in this Script.
Returns the list of user signals defined in this Script.
Returns true if the script, or a base class, defines a signal with the given name.
Returns true if the script contains non-empty source code.
Returns true if base_object is an instance of this script.
Returns true if the script is an abstract script. An abstract script does not have a constructor and cannot be instantiated.
Returns true 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.
© 2014–present Juan Linietsky, Ariel Manzur and the Godot community
Licensed under the Creative Commons Attribution Unported License v3.0.
https://docs.godotengine.org/en/4.2/classes/class_script.html