Godot editor's interface. 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. [b]Note:[/b] This class shouldn't be instantiated directly. Instead, access the singleton using [method EditorPlugin.get_editor_interface]. Edits the given [Node]. The node will be also selected if it's inside the scene tree. 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. 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. 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. [b]Warning:[/b] Removing and freeing this node will render the editor useless and may cause a crash. Returns the editor's [EditorCommandPalette] instance. [b]Warning:[/b] Removing and freeing this node will render a part of the editor useless and may cause a crash. Returns the current directory being viewed in the [FileSystemDock]. If a file is selected, its base directory will be returned using [method String.get_base_dir] instead. Returns the current path being viewed in the [FileSystemDock]. Returns the edited (current) scene's root [Node]. Returns the editor control responsible for main screen plugins and tools. Use it with plugins that implement [method EditorPlugin._has_main_screen]. [b]Warning:[/b] Removing and freeing this node will render a part of the editor useless and may cause a crash. Returns the [EditorPaths] singleton. 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. Returns the editor's [EditorSettings] instance. Returns the editor's [FileSystemDock] instance. [b]Warning:[/b] Removing and freeing this node will render a part of the editor useless and may cause a crash. Returns the editor's [EditorInspector] instance. [b]Warning:[/b] Removing and freeing this node will render a part of the editor useless and may cause a crash. Returns an [Array] with the file paths of the currently opened scenes. Returns the name of the scene that is being played. If no scene is currently being played, returns an empty string. Returns the editor's [EditorFileSystem] instance. Returns the editor's [EditorResourcePreview] instance. Returns the editor's [ScriptEditor] instance. [b]Warning:[/b] Removing and freeing this node will render a part of the editor useless and may cause a crash. Returns an array containing the paths of the currently selected files (and directories) in the [FileSystemDock]. Returns the editor's [EditorSelection] instance. Shows the given property on the given [param object] in the editor's Inspector dock. If [param inspector_only] is [code]true[/code], plugins will not attempt to edit [param object]. Returns [code]true[/code] if Movie Maker mode is enabled in the editor. See also [method set_movie_maker_enabled]. See [MovieWriter] for more information. Returns [code]true[/code] if a scene is currently being played, [code]false[/code] otherwise. Paused scenes are considered as being played. Returns [code]true[/code] if the specified [param plugin] is enabled. The plugin name is the same as its directory name. Returns mesh previews rendered at the given size as an [Array] of [Texture2D]s. Opens the scene at the given path. Plays the currently active scene. Plays the scene specified by its filepath. Plays the main scene. Reloads the scene at the given path. Restarts the editor. This closes the editor and then opens the same project. If [param save] is [code]true[/code], the project will be saved before restarting. Saves the scene. Returns either [constant OK] or [constant ERR_CANT_CREATE]. Saves the scene as a file at [param path]. Selects the file, with the path provided by [param file], in the FileSystem dock. Sets the editor's current main screen to the one specified in [param name]. [param name] must match the text of the tab in question exactly ([code]2D[/code], [code]3D[/code], [code]Script[/code], [code]AssetLib[/code]). Sets whether Movie Maker mode is enabled in the editor. See also [method is_movie_maker_enabled]. See [MovieWriter] for more information. Sets the enabled status of a plugin. The plugin name is the same as its directory name. Stops the scene that is currently playing. If [code]true[/code], enables distraction-free mode which hides side docks to increase the space available for the main view.