2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "EditorInterface" inherits= "Node" version= "4.0" >
2017-09-12 22:42:36 +02:00
<brief_description >
2018-09-18 16:38:19 +02:00
Godot editor's interface.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2018-09-18 16:38:19 +02:00
EditorInterface gives you control over Godot editor's window. It allows customizing the window, saving and (re-)loading scenes, rendering mesh previews, inspecting and editing resources and objects, and provides access to [EditorSettings], [EditorFileSystem], [EditorResourcePreview], [ScriptEditor], the editor viewport, and information about scenes.
2020-04-14 22:09:21 +02:00
[b]Note:[/b] This class shouldn't be instantiated directly. Instead, access the singleton using [method EditorPlugin.get_editor_interface].
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2021-04-07 22:08:41 +02:00
<method name= "edit_node" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "node" type= "Node" />
2021-04-07 22:08:41 +02:00
<description >
Edits the given [Node]. The node will be also selected if it's inside the scene tree.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "edit_resource" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "resource" type= "Resource" />
2017-09-12 22:42:36 +02:00
<description >
2021-12-07 21:00:26 +01:00
Edits the given [Resource]. If the resource is a [Script] you can also edit it with [method edit_script] to specify the line and column position.
</description>
</method>
<method name= "edit_script" >
<return type= "void" />
<argument index= "0" name= "script" type= "Script" />
<argument index= "1" name= "line" type= "int" default= "-1" />
<argument index= "2" name= "column" type= "int" default= "0" />
<argument index= "3" name= "grab_focus" type= "bool" default= "true" />
<description >
Edits the given [Script]. The line and column on which to open the script can also be specified. The script will be open with the user-configured editor for the script's language which may be an external editor.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_base_control" >
2021-07-30 15:28:05 +02:00
<return type= "Control" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-18 17:17:00 +02:00
Returns the main container of Godot editor's window. For example, you can use it to retrieve the size of the container and place your controls accordingly.
2021-10-10 21:28:56 +02:00
[b]Warning:[/b] Removing and freeing this node will render the editor useless and may cause a crash.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-05-29 15:28:16 +02:00
<method name= "get_command_palette" qualifiers= "const" >
<return type= "EditorCommandPalette" />
<description >
2021-08-13 11:04:01 +02:00
Returns the editor's [EditorCommandPalette] instance.
2021-10-10 21:28:56 +02:00
[b]Warning:[/b] Removing and freeing this node will render a part of the editor useless and may cause a crash.
2021-05-29 15:28:16 +02:00
</description>
</method>
2019-09-24 11:44:48 +02:00
<method name= "get_current_path" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2019-09-24 11:44:48 +02:00
<description >
2020-07-18 17:17:00 +02:00
Returns the current path being viewed in the [FileSystemDock].
2019-09-24 11:44:48 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_edited_scene_root" >
2021-07-30 15:28:05 +02:00
<return type= "Node" />
2017-09-12 22:42:36 +02:00
<description >
2018-09-18 16:38:19 +02:00
Returns the edited (current) scene's root [Node].
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-12-19 15:17:42 +01:00
<method name= "get_editor_main_control" >
2021-07-30 15:28:05 +02:00
<return type= "Control" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-30 12:21:49 +02:00
Returns the main editor control. Use this as a parent for main screens.
[b]Note:[/b] This returns the main editor control containing the whole editor, not the 2D or 3D viewports specifically.
2021-10-10 21:28:56 +02:00
[b]Warning:[/b] Removing and freeing this node will render a part of the editor useless and may cause a crash.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-05-25 02:25:11 +02:00
<method name= "get_editor_paths" >
2021-07-30 15:28:05 +02:00
<return type= "EditorPaths" />
2021-05-25 02:25:11 +02:00
<description >
</description>
</method>
2021-04-04 16:08:25 +02:00
<method name= "get_editor_scale" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "float" />
2021-04-04 16:08:25 +02:00
<description >
Returns the actual scale of the editor UI ([code]1.0[/code] being 100% scale). This can be used to adjust position and dimensions of the UI added by plugins.
[b]Note:[/b] This value is set via the [code]interface/editor/display_scale[/code] and [code]interface/editor/custom_display_scale[/code] editor settings. Editor must be restarted for changes to be properly applied.
</description>
</method>
2021-01-04 14:33:44 +01:00
<method name= "get_editor_settings" >
2021-07-30 15:28:05 +02:00
<return type= "EditorSettings" />
2021-01-04 14:33:44 +01:00
<description >
Returns the editor's [EditorSettings] instance.
</description>
</method>
2020-03-20 12:58:38 +01:00
<method name= "get_file_system_dock" >
2021-07-30 15:28:05 +02:00
<return type= "FileSystemDock" />
2020-03-20 12:58:38 +01:00
<description >
2020-07-18 17:17:00 +02:00
Returns the editor's [FileSystemDock] instance.
2021-10-10 21:28:56 +02:00
[b]Warning:[/b] Removing and freeing this node will render a part of the editor useless and may cause a crash.
2020-03-20 12:58:38 +01:00
</description>
</method>
2019-04-15 14:49:41 +02:00
<method name= "get_inspector" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "EditorInspector" />
2019-04-15 14:49:41 +02:00
<description >
2020-07-18 17:17:00 +02:00
Returns the editor's [EditorInspector] instance.
2021-10-10 21:28:56 +02:00
[b]Warning:[/b] Removing and freeing this node will render a part of the editor useless and may cause a crash.
2019-04-15 14:49:41 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_open_scenes" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Array" />
2017-09-12 22:42:36 +02:00
<description >
2018-09-18 16:38:19 +02:00
Returns an [Array] with the file paths of the currently opened scenes.
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-04-05 16:19:24 +02:00
<method name= "get_playing_scene" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2020-04-05 16:19:24 +02:00
<description >
Returns the name of the scene that is being played. If no scene is currently being played, returns an empty string.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_resource_filesystem" >
2021-07-30 15:28:05 +02:00
<return type= "EditorFileSystem" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-18 17:17:00 +02:00
Returns the editor's [EditorFileSystem] instance.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_resource_previewer" >
2021-07-30 15:28:05 +02:00
<return type= "EditorResourcePreview" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-18 17:17:00 +02:00
Returns the editor's [EditorResourcePreview] instance.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_script_editor" >
2021-07-30 15:28:05 +02:00
<return type= "ScriptEditor" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-18 17:17:00 +02:00
Returns the editor's [ScriptEditor] instance.
2021-10-10 21:28:56 +02:00
[b]Warning:[/b] Removing and freeing this node will render a part of the editor useless and may cause a crash.
2017-09-12 22:42:36 +02:00
</description>
</method>
2018-01-07 01:37:45 +01:00
<method name= "get_selected_path" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2018-01-07 01:37:45 +01:00
<description >
2020-07-18 17:17:00 +02:00
Returns the path of the directory currently selected in the [FileSystemDock]. If a file is selected, its base directory will be returned using [method String.get_base_dir] instead.
2018-01-07 01:37:45 +01:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_selection" >
2021-07-30 15:28:05 +02:00
<return type= "EditorSelection" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-18 17:17:00 +02:00
Returns the editor's [EditorSelection] instance.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "inspect_object" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "object" type= "Object" />
<argument index= "1" name= "for_property" type= "String" default= """" />
<argument index= "2" name= "inspector_only" type= "bool" default= "false" />
2017-09-12 22:42:36 +02:00
<description >
2020-09-16 21:27:19 +02:00
Shows the given property on the given [code]object[/code] in the editor's Inspector dock. If [code]inspector_only[/code] is [code]true[/code], plugins will not attempt to edit [code]object[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-04-05 16:19:24 +02:00
<method name= "is_playing_scene" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
2020-04-05 16:19:24 +02:00
<description >
2020-07-18 17:17:00 +02:00
Returns [code]true[/code] if a scene is currently being played, [code]false[/code] otherwise. Paused scenes are considered as being played.
2020-04-05 16:19:24 +02:00
</description>
</method>
2018-01-30 23:11:07 +01:00
<method name= "is_plugin_enabled" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "plugin" type= "String" />
2018-01-30 23:11:07 +01:00
<description >
2020-07-18 17:17:00 +02:00
Returns [code]true[/code] if the specified [code]plugin[/code] is enabled. The plugin name is the same as its directory name.
2018-01-30 23:11:07 +01:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "make_mesh_previews" >
2021-07-30 15:28:05 +02:00
<return type= "Array" />
<argument index= "0" name= "meshes" type= "Array" />
<argument index= "1" name= "preview_size" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2020-02-12 09:59:06 +01:00
Returns mesh previews rendered at the given size as an [Array] of [Texture2D]s.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "open_scene_from_path" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "scene_filepath" type= "String" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-12 19:10:42 +02:00
Opens the scene at the given path.
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-04-05 16:19:24 +02:00
<method name= "play_current_scene" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2020-04-05 16:19:24 +02:00
<description >
Plays the currently active scene.
</description>
</method>
<method name= "play_custom_scene" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "scene_filepath" type= "String" />
2020-04-05 16:19:24 +02:00
<description >
Plays the scene specified by its filepath.
</description>
</method>
<method name= "play_main_scene" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2020-04-05 16:19:24 +02:00
<description >
Plays the main scene.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "reload_scene_from_path" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "scene_filepath" type= "String" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-12 19:10:42 +02:00
Reloads the scene at the given path.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "save_scene" >
2021-07-30 15:28:05 +02:00
<return type= "int" enum= "Error" />
2017-09-12 22:42:36 +02:00
<description >
2019-06-22 01:04:47 +02:00
Saves the scene. Returns either [code]OK[/code] or [code]ERR_CANT_CREATE[/code] (see [@GlobalScope] constants).
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "save_scene_as" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "path" type= "String" />
<argument index= "1" name= "with_preview" type= "bool" default= "true" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-12 19:10:42 +02:00
Saves the scene as a file at [code]path[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2018-01-07 01:37:45 +01:00
<method name= "select_file" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "file" type= "String" />
2018-01-07 01:37:45 +01:00
<description >
2019-07-20 15:41:42 +02:00
Selects the file, with the path provided by [code]file[/code], in the FileSystem dock.
2018-01-07 01:37:45 +01:00
</description>
</method>
2019-08-13 12:35:50 +02:00
<method name= "set_main_screen_editor" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "name" type= "String" />
2019-08-13 12:35:50 +02:00
<description >
2020-07-18 17:17:00 +02:00
Sets the editor's current main screen to the one specified in [code]name[/code]. [code]name[/code] must match the text of the tab in question exactly ([code]2D[/code], [code]3D[/code], [code]Script[/code], [code]AssetLib[/code]).
2019-08-13 12:35:50 +02:00
</description>
</method>
2018-01-30 23:11:07 +01:00
<method name= "set_plugin_enabled" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "plugin" type= "String" />
<argument index= "1" name= "enabled" type= "bool" />
2018-01-30 23:11:07 +01:00
<description >
Sets the enabled status of a plugin. The plugin name is the same as its directory name.
</description>
</method>
2020-04-05 16:19:24 +02:00
<method name= "stop_playing_scene" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2020-04-05 16:19:24 +02:00
<description >
Stops the scene that is currently playing.
</description>
</method>
2017-09-12 22:42:36 +02:00
</methods>
2020-06-04 10:07:56 +02:00
<members >
<member name= "distraction_free_mode" type= "bool" setter= "set_distraction_free_mode" getter= "is_distraction_free_mode_enabled" >
2020-05-30 22:55:56 +02:00
If [code]true[/code], enables distraction-free mode which hides side docks to increase the space available for the main view.
2020-06-04 10:07:56 +02:00
</member>
</members>
2017-09-12 22:42:36 +02:00
</class>