mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
13 lines
283 B
GDScript
13 lines
283 B
GDScript
tool
|
|
extends EditorPlugin
|
|
|
|
const MdiGizmoPlugin = preload("res://addons/mesh_data_resource_editor/MDIGizmoPlugin.gd")
|
|
|
|
var gizmo_plugin = MdiGizmoPlugin.new()
|
|
|
|
func _enter_tree():
|
|
add_spatial_gizmo_plugin(gizmo_plugin)
|
|
|
|
func _exit_tree():
|
|
remove_spatial_gizmo_plugin(gizmo_plugin)
|