summaryrefslogtreecommitdiff
path: root/doc/classes/EditorInterface.xml
blob: 3a3fd43b151eddb2f9864a42cd694d8aaef1087b (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?xml version="1.0" encoding="UTF-8" ?>
<class name="EditorInterface" inherits="Node" category="Core" version="3.0.alpha.custom_build">
	<brief_description>
		Editor interface and main components.
	</brief_description>
	<description>
		Editor interface. Allows saving and (re-)loading scenes, rendering mesh previews, inspecting and editing resources and objects and provides access to [EditorSettings], [EditorFileSystem], [EditorResourcePreview]\ er, [ScriptEditor], the editor viewport, as well as information about scenes. Also see [EditorPlugin] and [EditorScript].
	</description>
	<tutorials>
	</tutorials>
	<demos>
	</demos>
	<methods>
		<method name="edit_resource">
			<return type="void">
			</return>
			<argument index="0" name="resource" type="Resource">
			</argument>
			<description>
				Edits the given [Resource].
			</description>
		</method>
		<method name="get_base_control">
			<return type="Control">
			</return>
			<description>
				Returns the base [Control].
			</description>
		</method>
		<method name="get_edited_scene_root">
			<return type="Node">
			</return>
			<description>
				Returns the edited scene's root [Node].
			</description>
		</method>
		<method name="get_editor_settings">
			<return type="EditorSettings">
			</return>
			<description>
				Returns the [EditorSettings].
			</description>
		</method>
		<method name="get_editor_viewport">
			<return type="Control">
			</return>
			<description>
				Returns the editor [Viewport].
			</description>
		</method>
		<method name="get_open_scenes" qualifiers="const">
			<return type="Array">
			</return>
			<description>
				Returns an [Array] of the currently opened scenes.
			</description>
		</method>
		<method name="get_resource_filesystem">
			<return type="EditorFileSystem">
			</return>
			<description>
				Returns the [EditorFileSystem].
			</description>
		</method>
		<method name="get_resource_previewer">
			<return type="EditorResourcePreview">
			</return>
			<description>
				Returns the [EditorResourcePreview]\ er.
			</description>
		</method>
		<method name="get_script_editor">
			<return type="ScriptEditor">
			</return>
			<description>
				Returns the [ScriptEditor].
			</description>
		</method>
		<method name="get_selection">
			<return type="EditorSelection">
			</return>
			<description>
				Returns the [EditorSelection].
			</description>
		</method>
		<method name="inspect_object">
			<return type="void">
			</return>
			<argument index="0" name="object" type="Object">
			</argument>
			<argument index="1" name="for_property" type="String" default="&quot;&quot;">
			</argument>
			<description>
				Shows the given property on the given [code]object[/code] in the Editor's Inspector dock.
			</description>
		</method>
		<method name="make_mesh_previews">
			<return type="Array">
			</return>
			<argument index="0" name="meshes" type="Array">
			</argument>
			<argument index="1" name="preview_size" type="int">
			</argument>
			<description>
				Returns mesh previews rendered at the given size as an [Array] of [Texture]s.
			</description>
		</method>
		<method name="open_scene_from_path">
			<return type="void">
			</return>
			<argument index="0" name="scene_filepath" type="String">
			</argument>
			<description>
				Opens the scene at the given path.
			</description>
		</method>
		<method name="reload_scene_from_path">
			<return type="void">
			</return>
			<argument index="0" name="scene_filepath" type="String">
			</argument>
			<description>
				Reloads the scene at the given path.
			</description>
		</method>
		<method name="save_scene">
			<return type="int" enum="Error">
			</return>
			<description>
				Saves the scene. Returns either OK or ERR_CANT_CREATE. See [@Global Scope] constants.
			</description>
		</method>
		<method name="save_scene_as">
			<return type="void">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<argument index="1" name="with_preview" type="bool" default="true">
			</argument>
			<description>
				Saves the scene as a file at [code]path[/code].
			</description>
		</method>
	</methods>
	<constants>
	</constants>
</class>