mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-16 13:30:07 +01:00
19 lines
398 B
GDScript
19 lines
398 B
GDScript
tool
|
|
extends EditorPlugin
|
|
|
|
var dock = null
|
|
|
|
func _enter_tree():
|
|
# When this plugin node enters tree, add the custom type
|
|
|
|
dock = preload("res://addons/custom_dock/custom_dock.scn").instance()
|
|
|
|
add_control_to_dock( DOCK_SLOT_LEFT_UL, dock )
|
|
|
|
|
|
func _exit_tree():
|
|
# Remove from docks (must be called so layout is updated and saved)
|
|
remove_control_from_docks(dock)
|
|
# Remove the node
|
|
dock.free()
|