Attention
You are reading the latest
(unstable) version of this documentation, which may document features not available
or compatible with Godot 3.x.
Checking the stable version of the documentation...
Work in progress
Godot documentation is being updated to reflect the latest changes in version
4.0
. Some documentation pages may
still state outdated information. This banner will tell you if you're reading one of such pages.
The contents of this page are up to date. If you can still find outdated information, please open an issue.
GDScript¶
Inherits: Script < Resource < RefCounted < Object
A script implemented in the GDScript programming language.
Description¶
A script implemented in the GDScript programming language. The script extends the functionality of all objects that instantiate it.
new creates a new instance of the script. Object.set_script extends an existing object, if that object's class matches one of the script's base classes.
Tutorials¶
Methods¶
new ( ... ) vararg |
Method Descriptions¶
Variant new ( ... ) vararg
Returns a new instance of the script.
For example:
var MyClass = load("myclass.gd")
var instance = MyClass.new()
assert(instance.get_script() == MyClass)