blob: dec0312148aca9d5771b798df0dccf4790564f9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
@tool
extends EditorPlugin
const ReleaseExportEditorPlugin := preload("res://addons/openvic-plugin/ReleaseExportEditorPlugin.gd")
var release_export_editor_plugin := ReleaseExportEditorPlugin.new()
func _enter_tree() -> void:
add_export_plugin(release_export_editor_plugin)
func _exit_tree() -> void:
remove_export_plugin(release_export_editor_plugin)
|