mirror of
https://github.com/speratus/extras_exporter.git
synced 2025-12-05 19:17:32 -05:00
13 lines
238 B
GDScript
13 lines
238 B
GDScript
@tool
|
|
extends EditorPlugin
|
|
|
|
const Exporter = preload("exporter.gd")
|
|
var exporter_plugin = Exporter.new()
|
|
|
|
func _enter_tree() -> void:
|
|
add_export_plugin(exporter_plugin)
|
|
|
|
|
|
func _exit_tree() -> void:
|
|
remove_export_plugin(exporter_plugin)
|