EditorPlugin

package
v0.0.0-...-e10d1cd Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 17, 2025 License: MIT Imports: 47 Imported by: 0

Documentation

Overview

Plugins are used by the editor to extend functionality. The most common types of plugins are those which edit a given node or resource type, import plugins and export plugins. See also EditorScript to add functions to the editor.

Note: Some names in this class contain "left" or "right" (e.g. DockSlotLeftUl). These APIs assume left-to-right layout, and would be backwards when using right-to-left layout. These names are kept for compatibility reasons.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Advanced

type Advanced = class

Advanced exposes a 1:1 low-level instance of the class, undocumented, for those who know what they are doing.

type AfterGUIInput

type AfterGUIInput int //gd:EditorPlugin.AfterGUIInput
const (
	// Forwards the [InputEvent] to other EditorPlugins.
	//
	// [InputEvent]: https://pkg.go.dev/graphics.gd/classdb/InputEvent
	AfterGuiInputPass AfterGUIInput = 0
	// Prevents the [InputEvent] from reaching other Editor classes.
	//
	// [InputEvent]: https://pkg.go.dev/graphics.gd/classdb/InputEvent
	AfterGuiInputStop AfterGUIInput = 1
	// Pass the [InputEvent] to other editor plugins except the main [Node3D] one. This can be used to prevent node selection changes and work with sub-gizmos instead.
	//
	// [InputEvent]: https://pkg.go.dev/graphics.gd/classdb/InputEvent
	// [Node3D]: https://pkg.go.dev/graphics.gd/classdb/Node3D
	AfterGuiInputCustom AfterGUIInput = 2
)

type Any

type Any interface {
	gd.IsClass
	AsEditorPlugin() Instance
}

type CustomControlContainer

type CustomControlContainer int //gd:EditorPlugin.CustomControlContainer
const (
	// Main editor toolbar, next to play buttons.
	ContainerToolbar CustomControlContainer = 0
	// The toolbar that appears when 3D editor is active.
	ContainerSpatialEditorMenu CustomControlContainer = 1
	// Left sidebar of the 3D editor.
	ContainerSpatialEditorSideLeft CustomControlContainer = 2
	// Right sidebar of the 3D editor.
	ContainerSpatialEditorSideRight CustomControlContainer = 3
	// Bottom panel of the 3D editor.
	ContainerSpatialEditorBottom CustomControlContainer = 4
	// The toolbar that appears when 2D editor is active.
	ContainerCanvasEditorMenu CustomControlContainer = 5
	// Left sidebar of the 2D editor.
	ContainerCanvasEditorSideLeft CustomControlContainer = 6
	// Right sidebar of the 2D editor.
	ContainerCanvasEditorSideRight CustomControlContainer = 7
	// Bottom panel of the 2D editor.
	ContainerCanvasEditorBottom CustomControlContainer = 8
	// Bottom section of the inspector.
	ContainerInspectorBottom CustomControlContainer = 9
	// Tab of Project Settings dialog, to the left of other tabs.
	ContainerProjectSettingTabLeft CustomControlContainer = 10
	// Tab of Project Settings dialog, to the right of other tabs.
	ContainerProjectSettingTabRight CustomControlContainer = 11
)

type DockSlot

type DockSlot int //gd:EditorPlugin.DockSlot
const (
	// Dock slot, left side, upper-left (empty in default layout).
	DockSlotLeftUl DockSlot = 0
	// Dock slot, left side, bottom-left (empty in default layout).
	DockSlotLeftBl DockSlot = 1
	// Dock slot, left side, upper-right (in default layout includes Scene and Import docks).
	DockSlotLeftUr DockSlot = 2
	// Dock slot, left side, bottom-right (in default layout includes FileSystem dock).
	DockSlotLeftBr DockSlot = 3
	// Dock slot, right side, upper-left (in default layout includes Inspector, Node, and History docks).
	DockSlotRightUl DockSlot = 4
	// Dock slot, right side, bottom-left (empty in default layout).
	DockSlotRightBl DockSlot = 5
	// Dock slot, right side, upper-right (empty in default layout).
	DockSlotRightUr DockSlot = 6
	// Dock slot, right side, bottom-right (empty in default layout).
	DockSlotRightBr DockSlot = 7
	// Represents the size of the [DockSlot] enum.
	DockSlotMax DockSlot = 8
)

type Expanded

type Expanded = MoreArgs

type Extension

type Extension[T gdclass.Interface] struct{ gdclass.Extension[T, Instance] }

Extension can be embedded in a new struct to create an extension of this class. T should be the type that is embedding this [Extension]See Interface for methods that can be overridden by T.

func (*Extension[T]) AsEditorPlugin

func (self *Extension[T]) AsEditorPlugin() Instance

func (*Extension[T]) AsNode

func (self *Extension[T]) AsNode() Node.Instance

func (*Extension[T]) AsObject

func (self *Extension[T]) AsObject() [1]gd.Object

type ID

type ID Object.ID

ID is a typed object ID (reference) to an instance of this class, use it to store references to objects with unknown lifetimes, as an ID will not panic on use if the underlying object has been destroyed.

func (ID) Instance

func (id ID) Instance() (Instance, bool)

type Implementation

type Implementation = implementation

Implementation implements Interface with empty methods.

type Instance

type Instance [1]gdclass.EditorPlugin

Instance of the class with convieniently typed arguments and results.

var Nil Instance

Nil is a nil/null instance of the class. Equivalent to the zero value.

func New

func New() Instance

func (Instance) AddAutoloadSingleton

func (self Instance) AddAutoloadSingleton(name string, path string)

Adds a script at 'path' to the Autoload list as 'name'.

func (Instance) AddContextMenuPlugin

func (self Instance) AddContextMenuPlugin(slot EditorContextMenuPlugin.ContextMenuSlot, plugin EditorContextMenuPlugin.Instance)

Adds a plugin to the context menu. 'slot' is the context menu where the plugin will be added.

Note: A plugin instance can belong only to a single context menu slot.

func (Instance) AddControlToBottomPanel

func (self Instance) AddControlToBottomPanel(control Control.Instance, title string) Button.Instance

Adds a control to the bottom panel (together with Output, Debug, Animation, etc.). Returns a reference to the button added. It's up to you to hide/show the button when needed. When your plugin is deactivated, make sure to remove your custom control with RemoveControlFromBottomPanel and free it with Node.QueueFree.

Optionally, you can specify a shortcut parameter. When pressed, this shortcut will toggle the bottom panel's visibility. See the default editor bottom panel shortcuts in the Editor Settings for inspiration. Per convention, they all use Alt modifier.

func (Instance) AddControlToContainer

func (self Instance) AddControlToContainer(container CustomControlContainer, control Control.Instance)

Adds a custom control to a container in the editor UI.

Please remember that you have to manage the visibility of your custom controls yourself (and likely hide it after adding it).

When your plugin is deactivated, make sure to remove your custom control with RemoveControlFromContainer and free it with Node.QueueFree.

func (Instance) AddControlToDock

func (self Instance) AddControlToDock(slot DockSlot, control Control.Instance)

Adds the control to a specific dock slot.

If the dock is repositioned and as long as the plugin is active, the editor will save the dock position on further sessions.

When your plugin is deactivated, make sure to remove your custom control with RemoveControlFromDocks and free it with Node.QueueFree.

Optionally, you can specify a shortcut parameter. When pressed, this shortcut will open and focus the dock.

func (Instance) AddCustomType

func (self Instance) AddCustomType(atype string, base string, script Script.Instance, icon Texture2D.Instance)

Adds a custom type, which will appear in the list of nodes or resources.

When a given node or resource is selected, the base type will be instantiated (e.g. "Node3D", "Control", "Resource"), then the script will be loaded and set to this object.

Note: The base type is the base engine class which this type's class hierarchy inherits, not any custom type parent classes.

You can use the virtual method Handles to check if your custom object is being edited by checking the script or using the is keyword.

During run-time, this will be a simple object with a script so this function does not need to be called then.

Note: Custom types added this way are not true classes. They are just a helper to create a node with specific script.

func (Instance) AddDebuggerPlugin

func (self Instance) AddDebuggerPlugin(script EditorDebuggerPlugin.Instance)

Adds a Script as debugger plugin to the Debugger. The script must extend EditorDebuggerPlugin.

func (Instance) AddExportPlatform

func (self Instance) AddExportPlatform(platform EditorExportPlatform.Instance)

Registers a new EditorExportPlatform. Export platforms provides functionality of exporting to the specific platform.

func (Instance) AddExportPlugin

func (self Instance) AddExportPlugin(plugin EditorExportPlugin.Instance)

Registers a new EditorExportPlugin. Export plugins are used to perform tasks when the project is being exported.

See AddInspectorPlugin for an example of how to register a plugin.

func (Instance) AddImportPlugin

func (self Instance) AddImportPlugin(importer EditorImportPlugin.Instance)

Registers a new EditorImportPlugin. Import plugins are used to import custom and unsupported assets as a custom Resource type.

If 'first_priority' is true, the new import plugin is inserted first in the list and takes precedence over pre-existing plugins.

Note: If you want to import custom 3D asset formats use AddSceneFormatImporterPlugin instead.

See AddInspectorPlugin for an example of how to register a plugin.

func (Instance) AddInspectorPlugin

func (self Instance) AddInspectorPlugin(plugin EditorInspectorPlugin.Instance)

Registers a new EditorInspectorPlugin. Inspector plugins are used to extend EditorInspector and provide custom configuration tools for your object's properties.

Note: Always use RemoveInspectorPlugin to remove the registered EditorInspectorPlugin when your EditorPlugin is disabled to prevent leaks and an unexpected behavior.

package main

import (
	"graphics.gd/classdb/EditorInspectorPlugin"
	"graphics.gd/classdb/EditorPlugin"
)

type MyInspectorPlugin struct {
	EditorInspectorPlugin.Extension[MyInspectorPlugin]
}

type MyEditorPlugin struct {
	EditorPlugin.Extension[MyEditorPlugin]

	inspector_plugin *MyInspectorPlugin
}

func (e *MyEditorPlugin) EnterTree() {
	e.inspector_plugin = new(MyInspectorPlugin)
	e.AsEditorPlugin().AddInspectorPlugin(e.inspector_plugin.AsEditorInspectorPlugin())
}

func (e *MyEditorPlugin) ExitTree() {
	e.AsEditorPlugin().RemoveInspectorPlugin(e.inspector_plugin.AsEditorInspectorPlugin())
}

func (Instance) AddNode3dGizmoPlugin

func (self Instance) AddNode3dGizmoPlugin(plugin EditorNode3DGizmoPlugin.Instance)

Registers a new EditorNode3DGizmoPlugin. Gizmo plugins are used to add custom gizmos to the 3D preview viewport for a Node3D.

See AddInspectorPlugin for an example of how to register a plugin.

func (Instance) AddResourceConversionPlugin

func (self Instance) AddResourceConversionPlugin(plugin EditorResourceConversionPlugin.Instance)

Registers a new EditorResourceConversionPlugin. Resource conversion plugins are used to add custom resource converters to the editor inspector.

See EditorResourceConversionPlugin for an example of how to create a resource conversion plugin.

func (Instance) AddSceneFormatImporterPlugin

func (self Instance) AddSceneFormatImporterPlugin(scene_format_importer EditorSceneFormatImporter.Instance)

Registers a new EditorSceneFormatImporter. Scene importers are used to import custom 3D asset formats as scenes.

If 'first_priority' is true, the new import plugin is inserted first in the list and takes precedence over pre-existing plugins.

func (Instance) AddScenePostImportPlugin

func (self Instance) AddScenePostImportPlugin(scene_import_plugin EditorScenePostImportPlugin.Instance)

Add an EditorScenePostImportPlugin. These plugins allow customizing the import process of 3D assets by adding new options to the import dialogs.

If 'first_priority' is true, the new import plugin is inserted first in the list and takes precedence over pre-existing plugins.

func (Instance) AddToolMenuItem

func (self Instance) AddToolMenuItem(name string, callable func())

Adds a custom menu item to Project > Tools named 'name'. When clicked, the provided 'callable' will be called.

func (Instance) AddToolSubmenuItem

func (self Instance) AddToolSubmenuItem(name string, submenu PopupMenu.Instance)

Adds a custom PopupMenu submenu under Project > Tools > 'name'. Use RemoveToolMenuItem on plugin clean up to remove the menu.

func (Instance) AddTranslationParserPlugin

func (self Instance) AddTranslationParserPlugin(parser EditorTranslationParserPlugin.Instance)

Registers a custom translation parser plugin for extracting translatable strings from custom files.

func (Instance) AddUndoRedoInspectorHookCallback

func (self Instance) AddUndoRedoInspectorHookCallback(callable func(undo_redo Object.Instance, modified_object Object.Instance, property string, new_value any))

Hooks a callback into the undo/redo action creation when a property is modified in the inspector. This allows, for example, to save other properties that may be lost when a given property is modified.

The callback should have 4 arguments: Object undo_redo, Object modified_object, string property and any new_value. They are, respectively, the UndoRedo object used by the inspector, the currently modified object, the name of the modified property and the new value the property is about to take.

func (Instance) AsEditorPlugin

func (self Instance) AsEditorPlugin() Instance

func (Instance) AsNode

func (self Instance) AsNode() Node.Instance

func (Instance) AsObject

func (self Instance) AsObject() [1]gd.Object

func (Instance) GetEditorInterface

func (self Instance) GetEditorInterface() EditorInterface.Instance

Returns the EditorInterface singleton instance.

func (Instance) GetExportAsMenu

func (self Instance) GetExportAsMenu() PopupMenu.Instance

Returns the PopupMenu under Scene > Export As....

func (Instance) GetPluginVersion

func (self Instance) GetPluginVersion() string

Provide the version of the plugin declared in the plugin.cfg config file.

func (Instance) GetScriptCreateDialog

func (self Instance) GetScriptCreateDialog() ScriptCreateDialog.Instance

Gets the Editor's dialog used for making scripts.

Note: Users can configure it before use.

Warning: Removing and freeing this node will render a part of the editor useless and may cause a crash.

func (Instance) GetUndoRedo

func (self Instance) GetUndoRedo() EditorUndoRedoManager.Instance

Gets the undo/redo object. Most actions in the editor can be undoable, so use this object to make sure this happens when it's worth it.

func (Instance) HideBottomPanel

func (self Instance) HideBottomPanel()

Minimizes the bottom panel.

func (Instance) ID

func (self Instance) ID() ID

func (Instance) MakeBottomPanelItemVisible

func (self Instance) MakeBottomPanelItemVisible(item Control.Instance)

Makes a specific item in the bottom panel visible.

func (Instance) MoreArgs

func (self Instance) MoreArgs() MoreArgs

MoreArgs enables certain functions to be called with additional 'optional' arguments.

func (Instance) OnMainScreenChanged

func (self Instance) OnMainScreenChanged(cb func(screen_name string), flags ...Signal.Flags)

func (Instance) OnProjectSettingsChanged

func (self Instance) OnProjectSettingsChanged(cb func(), flags ...Signal.Flags)

func (Instance) OnResourceSaved

func (self Instance) OnResourceSaved(cb func(resource Resource.Instance), flags ...Signal.Flags)

func (Instance) OnSceneChanged

func (self Instance) OnSceneChanged(cb func(scene_root Node.Instance), flags ...Signal.Flags)

func (Instance) OnSceneClosed

func (self Instance) OnSceneClosed(cb func(filepath string), flags ...Signal.Flags)

func (Instance) OnSceneSaved

func (self Instance) OnSceneSaved(cb func(filepath string), flags ...Signal.Flags)

func (Instance) QueueSaveLayout

func (self Instance) QueueSaveLayout()

Queue save the project's editor layout.

func (Instance) RemoveAutoloadSingleton

func (self Instance) RemoveAutoloadSingleton(name string)

Removes an Autoload 'name' from the list.

func (Instance) RemoveContextMenuPlugin

func (self Instance) RemoveContextMenuPlugin(plugin EditorContextMenuPlugin.Instance)

Removes the specified context menu plugin.

func (Instance) RemoveControlFromBottomPanel

func (self Instance) RemoveControlFromBottomPanel(control Control.Instance)

Removes the control from the bottom panel. You have to manually Node.QueueFree the control.

func (Instance) RemoveControlFromContainer

func (self Instance) RemoveControlFromContainer(container CustomControlContainer, control Control.Instance)

Removes the control from the specified container. You have to manually Node.QueueFree the control.

func (Instance) RemoveControlFromDocks

func (self Instance) RemoveControlFromDocks(control Control.Instance)

Removes the control from the dock. You have to manually Node.QueueFree the control.

func (Instance) RemoveCustomType

func (self Instance) RemoveCustomType(atype string)

Removes a custom type added by AddCustomType.

func (Instance) RemoveDebuggerPlugin

func (self Instance) RemoveDebuggerPlugin(script EditorDebuggerPlugin.Instance)

Removes the debugger plugin with given script from the Debugger.

func (Instance) RemoveExportPlatform

func (self Instance) RemoveExportPlatform(platform EditorExportPlatform.Instance)

Removes an export platform registered by AddExportPlatform.

func (Instance) RemoveExportPlugin

func (self Instance) RemoveExportPlugin(plugin EditorExportPlugin.Instance)

Removes an export plugin registered by AddExportPlugin.

func (Instance) RemoveImportPlugin

func (self Instance) RemoveImportPlugin(importer EditorImportPlugin.Instance)

Removes an import plugin registered by AddImportPlugin.

func (Instance) RemoveInspectorPlugin

func (self Instance) RemoveInspectorPlugin(plugin EditorInspectorPlugin.Instance)

Removes an inspector plugin registered by AddInspectorPlugin.

func (Instance) RemoveNode3dGizmoPlugin

func (self Instance) RemoveNode3dGizmoPlugin(plugin EditorNode3DGizmoPlugin.Instance)

Removes a gizmo plugin registered by AddNode3dGizmoPlugin.

func (Instance) RemoveResourceConversionPlugin

func (self Instance) RemoveResourceConversionPlugin(plugin EditorResourceConversionPlugin.Instance)

Removes a resource conversion plugin registered by AddResourceConversionPlugin.

func (Instance) RemoveSceneFormatImporterPlugin

func (self Instance) RemoveSceneFormatImporterPlugin(scene_format_importer EditorSceneFormatImporter.Instance)

Removes a scene format importer registered by AddSceneFormatImporterPlugin.

func (Instance) RemoveScenePostImportPlugin

func (self Instance) RemoveScenePostImportPlugin(scene_import_plugin EditorScenePostImportPlugin.Instance)

Remove the EditorScenePostImportPlugin, added with AddScenePostImportPlugin.

func (Instance) RemoveToolMenuItem

func (self Instance) RemoveToolMenuItem(name string)

Removes a menu 'name' from Project > Tools.

func (Instance) RemoveTranslationParserPlugin

func (self Instance) RemoveTranslationParserPlugin(parser EditorTranslationParserPlugin.Instance)

Removes a custom translation parser plugin registered by AddTranslationParserPlugin.

func (Instance) RemoveUndoRedoInspectorHookCallback

func (self Instance) RemoveUndoRedoInspectorHookCallback(callable Callable.Function)

Removes a callback previously added by AddUndoRedoInspectorHookCallback.

func (Instance) SetDockTabIcon

func (self Instance) SetDockTabIcon(control Control.Instance, icon Texture2D.Instance)

Sets the tab icon for the given control in a dock slot. Setting to null removes the icon.

func (Instance) SetForceDrawOverForwardingEnabled

func (self Instance) SetForceDrawOverForwardingEnabled()

Enables calling of ForwardCanvasForceDrawOverViewport for the 2D editor and Forward3dForceDrawOverViewport for the 3D editor when their viewports are updated. You need to call this method only once and it will work permanently for this plugin.

func (Instance) SetInputEventForwardingAlwaysEnabled

func (self Instance) SetInputEventForwardingAlwaysEnabled()

Use this method if you always want to receive inputs from 3D view screen inside Forward3dGuiInput. It might be especially usable if your plugin will want to use raycast in the scene.

func (*Instance) SetObject

func (self *Instance) SetObject(obj [1]gd.Object) bool

func (Instance) UpdateOverlays

func (self Instance) UpdateOverlays() int

Updates the overlays of the 2D and 3D editor viewport. Causes methods ForwardCanvasDrawOverViewport, ForwardCanvasForceDrawOverViewport, Forward3dDrawOverViewport and Forward3dForceDrawOverViewport to be called.

func (Instance) Virtual

func (self Instance) Virtual(name string) reflect.Value

type Interface

type Interface interface {
	// Called when there is a root node in the current edited scene, [Handles] is implemented, and an [InputEvent] happens in the 2D viewport. If this method returns true, 'event' is intercepted by this [EditorPlugin], otherwise 'event' is forwarded to other Editor classes.
	//
	//
	//
	// [gdscript]
	//
	// # Prevents the InputEvent from reaching other Editor classes.
	//
	// func _forward_canvas_gui_input(event):
	//
	// 	return true
	//
	// [/gdscript]
	//
	// [csharp]
	//
	// // Prevents the InputEvent from reaching other Editor classes.
	//
	// public override bool ForwardCanvasGuiInput(InputEvent @event)
	//
	// {
	//
	// 	return true;
	//
	// }
	//
	// [/csharp]
	//
	//
	//
	// This method must return false in order to forward the [InputEvent] to other Editor classes.
	//
	//
	//
	// [gdscript]
	//
	// # Consumes InputEventMouseMotion and forwards other InputEvent types.
	//
	// func _forward_canvas_gui_input(event):
	//
	// 	if (event is InputEventMouseMotion):
	//
	// 		return true
	//
	// 	return false
	//
	// [/gdscript]
	//
	// [csharp]
	//
	// // Consumes InputEventMouseMotion and forwards other InputEvent types.
	//
	// public override bool _ForwardCanvasGuiInput(InputEvent @event)
	//
	// {
	//
	// 	if (@event is InputEventMouseMotion)
	//
	// 	{
	//
	// 		return true;
	//
	// 	}
	//
	// 	return false;
	//
	// }
	//
	// [/csharp]
	//
	//
	//
	// [EditorPlugin]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin
	// [Handles]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [InputEvent]: https://pkg.go.dev/graphics.gd/classdb/InputEvent
	ForwardCanvasGuiInput(event InputEvent.Instance) bool
	// Called by the engine when the 2D editor's viewport is updated. 'viewport_control' is an overlay on top of the viewport and it can be used for drawing. You can update the viewport manually by calling [UpdateOverlays].
	//
	//
	//
	// [gdscript]
	//
	// func _forward_canvas_draw_over_viewport(overlay):
	//
	// 	# Draw a circle at the cursor's position.
	//
	// 	overlay.draw_circle(overlay.get_local_mouse_position(), 64, Color.WHITE)
	//
	//
	//
	// func _forward_canvas_gui_input(event):
	//
	// 	if event is InputEventMouseMotion:
	//
	// 		# Redraw the viewport when the cursor is moved.
	//
	// 		update_overlays()
	//
	// 		return true
	//
	// 	return false
	//
	// [/gdscript]
	//
	// [csharp]
	//
	// public override void _ForwardCanvasDrawOverViewport(Control viewportControl)
	//
	// {
	//
	// 	// Draw a circle at the cursor's position.
	//
	// 	viewportControl.DrawCircle(viewportControl.GetLocalMousePosition(), 64, Colors.White);
	//
	// }
	//
	//
	//
	// public override bool _ForwardCanvasGuiInput(InputEvent @event)
	//
	// {
	//
	// 	if (@event is InputEventMouseMotion)
	//
	// 	{
	//
	// 		// Redraw the viewport when the cursor is moved.
	//
	// 		UpdateOverlays();
	//
	// 		return true;
	//
	// 	}
	//
	// 	return false;
	//
	// }
	//
	// [/csharp]
	//
	//
	//
	// [UpdateOverlays]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Instance.UpdateOverlays
	ForwardCanvasDrawOverViewport(viewport_control Control.Instance)
	// This method is the same as [ForwardCanvasDrawOverViewport], except it draws on top of everything. Useful when you need an extra layer that shows over anything else.
	//
	// You need to enable calling of this method by using [SetForceDrawOverForwardingEnabled].
	//
	// [ForwardCanvasDrawOverViewport]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [SetForceDrawOverForwardingEnabled]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Instance.SetForceDrawOverForwardingEnabled
	ForwardCanvasForceDrawOverViewport(viewport_control Control.Instance)
	// Called when there is a root node in the current edited scene, [Handles] is implemented, and an [InputEvent] happens in the 3D viewport. The return value decides whether the [InputEvent] is consumed or forwarded to other [EditorPlugin]s. See [AfterGUIInput] for options.
	//
	//
	//
	// [gdscript]
	//
	// # Prevents the InputEvent from reaching other Editor classes.
	//
	// func _forward_3d_gui_input(camera, event):
	//
	// 	return EditorPlugin.AFTER_GUI_INPUT_STOP
	//
	// [/gdscript]
	//
	// [csharp]
	//
	// // Prevents the InputEvent from reaching other Editor classes.
	//
	// public override EditorPlugin.AfterGuiInput _Forward3DGuiInput(Camera3D camera, InputEvent @event)
	//
	// {
	//
	// 	return EditorPlugin.AfterGuiInput.Stop;
	//
	// }
	//
	// [/csharp]
	//
	//
	//
	// This method must return [AfterGuiInputPass] in order to forward the [InputEvent] to other Editor classes.
	//
	//
	//
	// [gdscript]
	//
	// # Consumes InputEventMouseMotion and forwards other InputEvent types.
	//
	// func _forward_3d_gui_input(camera, event):
	//
	// 	return EditorPlugin.AFTER_GUI_INPUT_STOP if event is InputEventMouseMotion else EditorPlugin.AFTER_GUI_INPUT_PASS
	//
	// [/gdscript]
	//
	// [csharp]
	//
	// // Consumes InputEventMouseMotion and forwards other InputEvent types.
	//
	// public override EditorPlugin.AfterGuiInput _Forward3DGuiInput(Camera3D camera, InputEvent @event)
	//
	// {
	//
	// 	return @event is InputEventMouseMotion ? EditorPlugin.AfterGuiInput.Stop : EditorPlugin.AfterGuiInput.Pass;
	//
	// }
	//
	// [/csharp]
	//
	//
	//
	// [EditorPlugin]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin
	// [Handles]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [InputEvent]: https://pkg.go.dev/graphics.gd/classdb/InputEvent
	Forward3dGuiInput(viewport_camera Camera3D.Instance, event InputEvent.Instance) AfterGUIInput
	// Called by the engine when the 3D editor's viewport is updated. 'viewport_control' is an overlay on top of the viewport and it can be used for drawing. You can update the viewport manually by calling [UpdateOverlays].
	//
	//
	//
	// [gdscript]
	//
	// func _forward_3d_draw_over_viewport(overlay):
	//
	// 	# Draw a circle at the cursor's position.
	//
	// 	overlay.draw_circle(overlay.get_local_mouse_position(), 64, Color.WHITE)
	//
	//
	//
	// func _forward_3d_gui_input(camera, event):
	//
	// 	if event is InputEventMouseMotion:
	//
	// 		# Redraw the viewport when the cursor is moved.
	//
	// 		update_overlays()
	//
	// 		return EditorPlugin.AFTER_GUI_INPUT_STOP
	//
	// 	return EditorPlugin.AFTER_GUI_INPUT_PASS
	//
	// [/gdscript]
	//
	// [csharp]
	//
	// public override void _Forward3DDrawOverViewport(Control viewportControl)
	//
	// {
	//
	// 	// Draw a circle at the cursor's position.
	//
	// 	viewportControl.DrawCircle(viewportControl.GetLocalMousePosition(), 64, Colors.White);
	//
	// }
	//
	//
	//
	// public override EditorPlugin.AfterGuiInput _Forward3DGuiInput(Camera3D viewportCamera, InputEvent @event)
	//
	// {
	//
	// 	if (@event is InputEventMouseMotion)
	//
	// 	{
	//
	// 		// Redraw the viewport when the cursor is moved.
	//
	// 		UpdateOverlays();
	//
	// 		return EditorPlugin.AfterGuiInput.Stop;
	//
	// 	}
	//
	// 	return EditorPlugin.AfterGuiInput.Pass;
	//
	// }
	//
	// [/csharp]
	//
	//
	//
	// [UpdateOverlays]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Instance.UpdateOverlays
	Forward3dDrawOverViewport(viewport_control Control.Instance)
	// This method is the same as [Forward3dDrawOverViewport], except it draws on top of everything. Useful when you need an extra layer that shows over anything else.
	//
	// You need to enable calling of this method by using [SetForceDrawOverForwardingEnabled].
	//
	// [Forward3dDrawOverViewport]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [SetForceDrawOverForwardingEnabled]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Instance.SetForceDrawOverForwardingEnabled
	Forward3dForceDrawOverViewport(viewport_control Control.Instance)
	// Override this method in your plugin to provide the name of the plugin when displayed in the Godot editor.
	//
	// For main screen plugins, this appears at the top of the screen, to the right of the "2D", "3D", "Script", "Game", and "AssetLib" buttons.
	GetPluginName() string
	// Override this method in your plugin to return a [Texture2D] in order to give it an icon.
	//
	// For main screen plugins, this appears at the top of the screen, to the right of the "2D", "3D", "Script", "Game", and "AssetLib" buttons.
	//
	// Ideally, the plugin icon should be white with a transparent background and 16×16 pixels in size.
	//
	//
	//
	// [gdscript]
	//
	// func _get_plugin_icon():
	//
	// 	# You can use a custom icon:
	//
	// 	return preload("res://addons/my_plugin/my_plugin_icon.svg")
	//
	// 	# Or use a built-in icon:
	//
	// 	return EditorInterface.get_editor_theme().get_icon("Node", "EditorIcons")
	//
	// [/gdscript]
	//
	// [csharp]
	//
	// public override Texture2D _GetPluginIcon()
	//
	// {
	//
	// 	// You can use a custom icon:
	//
	// 	return ResourceLoader.Load<Texture2D>("res://addons/my_plugin/my_plugin_icon.svg");
	//
	// 	// Or use a built-in icon:
	//
	// 	return EditorInterface.Singleton.GetEditorTheme().GetIcon("Node", "EditorIcons");
	//
	// }
	//
	// [/csharp]
	//
	//
	//
	// [Texture2D]: https://pkg.go.dev/graphics.gd/classdb/Texture2D
	GetPluginIcon() Texture2D.Instance
	// Returns true if this is a main screen editor plugin (it goes in the workspace selector together with 2D, 3D, Script, Game, and AssetLib).
	//
	// When the plugin's workspace is selected, other main screen plugins will be hidden, but your plugin will not appear automatically. It needs to be added as a child of [EditorInterface.GetEditorMainScreen] and made visible inside [MakeVisible].
	//
	// Use [GetPluginName] and [GetPluginIcon] to customize the plugin button's appearance.
	//
	//
	//
	// var plugin_control
	//
	//
	//
	// func _enter_tree():
	//
	// 	plugin_control = preload("my_plugin_control.tscn").instantiate()
	//
	// 	EditorInterface.get_editor_main_screen().add_child(plugin_control)
	//
	// 	plugin_control.hide()
	//
	//
	//
	// func _has_main_screen():
	//
	// 	return true
	//
	//
	//
	// func _make_visible(visible):
	//
	// 	plugin_control.visible = visible
	//
	//
	//
	// func _get_plugin_name():
	//
	// 	return "My Super Cool Plugin 3000"
	//
	//
	//
	// func _get_plugin_icon():
	//
	// 	return EditorInterface.get_editor_theme().get_icon("Node", "EditorIcons")
	//
	//
	//
	// [EditorInterface.GetEditorMainScreen]: https://pkg.go.dev/graphics.gd/classdb/EditorInterface#GetEditorMainScreen
	// [GetPluginIcon]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [GetPluginName]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [MakeVisible]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	HasMainScreen() bool
	// This function will be called when the editor is requested to become visible. It is used for plugins that edit a specific object type.
	//
	// Remember that you have to manage the visibility of all your editor controls manually.
	MakeVisible(visible bool)
	// This function is used for plugins that edit specific object types (nodes or resources). It requests the editor to edit the given object.
	//
	// 'object' can be null if the plugin was editing an object, but there is no longer any selected object handled by this plugin. It can be used to cleanup editing state.
	Edit(obj Object.Instance)
	// Implement this function if your plugin edits a specific type of object (Resource or Node). If you return true, then you will get the functions [Edit] and [MakeVisible] called when the editor requests them. If you have declared the methods [ForwardCanvasGuiInput] and [Forward3dGuiInput] these will be called too.
	//
	// Note: Each plugin should handle only one type of objects at a time. If a plugin handles more types of objects and they are edited at the same time, it will result in errors.
	//
	// [Edit]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [Forward3dGuiInput]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [ForwardCanvasGuiInput]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [MakeVisible]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	Handles(obj Object.Instance) bool
	// Override this method to provide a state data you want to be saved, like view position, grid settings, folding, etc. This is used when saving the scene (so state is kept when opening it again) and for switching tabs (so state can be restored when the tab returns). This data is automatically saved for each scene in an editstate file in the editor metadata folder. If you want to store global (scene-independent) editor data for your plugin, you can use [GetWindowLayout] instead.
	//
	// Use [SetState] to restore your saved state.
	//
	// Note: This method should not be used to save important settings that should persist with the project.
	//
	// Note: You must implement [GetPluginName] for the state to be stored and restored correctly.
	//
	//
	//
	// func _get_state():
	//
	// 	var state = { "zoom": zoom, "preferred_color": my_color }
	//
	// 	return state
	//
	//
	//
	// [GetPluginName]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [GetWindowLayout]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [SetState]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	GetState() map[interface{}]interface{}
	// Restore the state saved by [GetState]. This method is called when the current scene tab is changed in the editor.
	//
	// Note: Your plugin must implement [GetPluginName], otherwise it will not be recognized and this method will not be called.
	//
	//
	//
	// func _set_state(data):
	//
	// 	zoom = data.get("zoom", 1.0)
	//
	// 	preferred_color = data.get("my_color", Color.WHITE)
	//
	//
	//
	// [GetPluginName]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	// [GetState]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	SetState(state map[interface{}]interface{})
	// Clear all the state and reset the object being edited to zero. This ensures your plugin does not keep editing a currently existing node, or a node from the wrong scene.
	Clear()
	// Override this method to provide a custom message that lists unsaved changes. The editor will call this method when exiting or when closing a scene, and display the returned string in a confirmation dialog. Return empty string if the plugin has no unsaved changes.
	//
	// When closing a scene, 'for_scene' is the path to the scene being closed. You can use it to handle built-in resources in that scene.
	//
	// If the user confirms saving, [SaveExternalData] will be called, before closing the editor.
	//
	//
	//
	// func _get_unsaved_status(for_scene):
	//
	// 	if not unsaved:
	//
	// 		return ""
	//
	//
	//
	// 	if for_scene.is_empty():
	//
	// 		return "Save changes in MyCustomPlugin before closing?"
	//
	// 	else:
	//
	// 		return "Scene %s has changes from MyCustomPlugin. Save before closing?" % for_scene.get_file()
	//
	//
	//
	// func _save_external_data():
	//
	// 	unsaved = false
	//
	//
	//
	// If the plugin has no scene-specific changes, you can ignore the calls when closing scenes:
	//
	//
	//
	// func _get_unsaved_status(for_scene):
	//
	// 	if not for_scene.is_empty():
	//
	// 		return ""
	//
	//
	//
	// [SaveExternalData]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	GetUnsavedStatus(for_scene string) string
	// This method is called after the editor saves the project or when it's closed. It asks the plugin to save edited external scenes/resources.
	SaveExternalData()
	// This method is called when the editor is about to save the project, switch to another tab, etc. It asks the plugin to apply any pending state changes to ensure consistency.
	//
	// This is used, for example, in shader editors to let the plugin know that it must apply the shader code being written by the user to the object.
	ApplyChanges()
	// This is for editors that edit script-based objects. You can return a list of breakpoints in the format (script:line), for example: res://path_to_script.gd:25.
	GetBreakpoints() []string
	// Restore the plugin GUI layout and data saved by [GetWindowLayout]. This method is called for every plugin on editor startup. Use the provided 'configuration' file to read your saved data.
	//
	//
	//
	// func _set_window_layout(configuration):
	//
	// 	$Window.position = configuration.get_value("MyPlugin", "window_position", Vector2())
	//
	// 	$Icon.modulate = configuration.get_value("MyPlugin", "icon_color", Color.WHITE)
	//
	//
	//
	// [GetWindowLayout]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	SetWindowLayout(configuration ConfigFile.Instance)
	// Override this method to provide the GUI layout of the plugin or any other data you want to be stored. This is used to save the project's editor layout when [QueueSaveLayout] is called or the editor layout was changed (for example changing the position of a dock). The data is stored in the editor_layout.cfg file in the editor metadata directory.
	//
	// Use [SetWindowLayout] to restore your saved layout.
	//
	//
	//
	// func _get_window_layout(configuration):
	//
	// 	configuration.set_value("MyPlugin", "window_position", $Window.position)
	//
	// 	configuration.set_value("MyPlugin", "icon_color", $Icon.modulate)
	//
	//
	//
	// [QueueSaveLayout]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Instance.QueueSaveLayout
	// [SetWindowLayout]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	GetWindowLayout(configuration ConfigFile.Instance)
	// This method is called when the editor is about to run the project. The plugin can then perform required operations before the project runs.
	//
	// This method must return a boolean. If this method returns false, the project will not run. The run is aborted immediately, so this also prevents all other plugins' [Build] methods from running.
	//
	// [Build]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin#Interface
	Build() bool
	// Called by the engine when the user enables the [EditorPlugin] in the Plugin tab of the project settings window.
	//
	// [EditorPlugin]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin
	EnablePlugin()
	// Called by the engine when the user disables the [EditorPlugin] in the Plugin tab of the project settings window.
	//
	// [EditorPlugin]: https://pkg.go.dev/graphics.gd/classdb/EditorPlugin
	DisablePlugin()
}

type MoreArgs

type MoreArgs [1]gdclass.EditorPlugin

MoreArgs is a container for Instance functions with additional 'optional' arguments.

func (MoreArgs) AddControlToBottomPanel

func (self MoreArgs) AddControlToBottomPanel(control Control.Instance, title string, shortcut Shortcut.Instance) Button.Instance

Adds a control to the bottom panel (together with Output, Debug, Animation, etc.). Returns a reference to the button added. It's up to you to hide/show the button when needed. When your plugin is deactivated, make sure to remove your custom control with RemoveControlFromBottomPanel and free it with Node.QueueFree.

Optionally, you can specify a shortcut parameter. When pressed, this shortcut will toggle the bottom panel's visibility. See the default editor bottom panel shortcuts in the Editor Settings for inspiration. Per convention, they all use Alt modifier.

func (MoreArgs) AddControlToDock

func (self MoreArgs) AddControlToDock(slot DockSlot, control Control.Instance, shortcut Shortcut.Instance)

Adds the control to a specific dock slot.

If the dock is repositioned and as long as the plugin is active, the editor will save the dock position on further sessions.

When your plugin is deactivated, make sure to remove your custom control with RemoveControlFromDocks and free it with Node.QueueFree.

Optionally, you can specify a shortcut parameter. When pressed, this shortcut will open and focus the dock.

func (MoreArgs) AddImportPlugin

func (self MoreArgs) AddImportPlugin(importer EditorImportPlugin.Instance, first_priority bool)

Registers a new EditorImportPlugin. Import plugins are used to import custom and unsupported assets as a custom Resource type.

If 'first_priority' is true, the new import plugin is inserted first in the list and takes precedence over pre-existing plugins.

Note: If you want to import custom 3D asset formats use AddSceneFormatImporterPlugin instead.

See AddInspectorPlugin for an example of how to register a plugin.

func (MoreArgs) AddSceneFormatImporterPlugin

func (self MoreArgs) AddSceneFormatImporterPlugin(scene_format_importer EditorSceneFormatImporter.Instance, first_priority bool)

Registers a new EditorSceneFormatImporter. Scene importers are used to import custom 3D asset formats as scenes.

If 'first_priority' is true, the new import plugin is inserted first in the list and takes precedence over pre-existing plugins.

func (MoreArgs) AddScenePostImportPlugin

func (self MoreArgs) AddScenePostImportPlugin(scene_import_plugin EditorScenePostImportPlugin.Instance, first_priority bool)

Add an EditorScenePostImportPlugin. These plugins allow customizing the import process of 3D assets by adding new options to the import dialogs.

If 'first_priority' is true, the new import plugin is inserted first in the list and takes precedence over pre-existing plugins.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL