1
0
forked from joey/godottest
Joey Eamigh 9989fab018
addons?
2025-10-10 14:07:23 -04:00

13 lines
215 B
GDScript

@tool
extends EditorPlugin
var _exporter: EditorExportPlugin = preload("exporter.gd").new()
func _enter_tree() -> void:
add_export_plugin(_exporter)
func _exit_tree() -> void:
remove_export_plugin(_exporter)