mirror of
https://github.com/CrispyPin/ovr-utils.git
synced 2025-04-04 12:13:59 +02:00
14 lines
258 B
GDScript
14 lines
258 B
GDScript
tool
|
|
extends EditorPlugin
|
|
|
|
var export_plugin
|
|
|
|
|
|
func _enter_tree():
|
|
export_plugin = preload("res://addons/ovr_utils/ovr_utils_exporter.gd").new()
|
|
add_export_plugin(export_plugin)
|
|
|
|
|
|
func _exit_tree():
|
|
if export_plugin:
|
|
remove_export_plugin(export_plugin)
|