summaryrefslogtreecommitdiff
path: root/doc/classes/Script.xml
blob: 4257991e0d3f507b417f862477f128309cf5e495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Script" inherits="Resource" category="Core" version="3.1">
	<brief_description>
		A class stored as a resource.
	</brief_description>
	<description>
		A class stored as a resource. The script exends the functionality of all objects that instance it.
		The 'new' 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.
	</description>
	<tutorials>
		http://docs.godotengine.org/en/3.0/getting_started/step_by_step/scripting.html
	</tutorials>
	<demos>
	</demos>
	<methods>
		<method name="can_instance" qualifiers="const">
			<return type="bool">
			</return>
			<description>
				Returns true if the script can be instanced.
			</description>
		</method>
		<method name="get_base_script" qualifiers="const">
			<return type="Script">
			</return>
			<description>
			</description>
		</method>
		<method name="get_instance_base_type" qualifiers="const">
			<return type="String">
			</return>
			<description>
			</description>
		</method>
		<method name="has_script_signal" qualifiers="const">
			<return type="bool">
			</return>
			<argument index="0" name="signal_name" type="String">
			</argument>
			<description>
				Returns true if the script, or a base class, defines a signal with the given name.
			</description>
		</method>
		<method name="has_source_code" qualifiers="const">
			<return type="bool">
			</return>
			<description>
				Returns true if the script contains non-empty source code.
			</description>
		</method>
		<method name="instance_has" qualifiers="const">
			<return type="bool">
			</return>
			<argument index="0" name="base_object" type="Object">
			</argument>
			<description>
				Returns true if 'base_object' is an instance of this script.
			</description>
		</method>
		<method name="is_tool" qualifiers="const">
			<return type="bool">
			</return>
			<description>
				Returns true if the script is a tool script. A tool script can run in the editor.
			</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>
	<members>
		<member name="source_code" type="String" setter="set_source_code" 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.
		</member>
	</members>
	<constants>
	</constants>
</class>