ovr-utils/ovr-utils/addons/settings-manager/settings_manager.gd

11 lines
205 B
GDScript3
Raw Normal View History

2021-05-16 14:23:22 +02:00
tool
extends EditorPlugin
func _enter_tree() -> void:
2021-05-16 15:30:07 +02:00
add_autoload_singleton("Settings", "res://addons/settings-manager/settings.gd")
2021-05-16 14:23:22 +02:00
func _exit_tree() -> void:
2021-05-16 15:30:07 +02:00
remove_autoload_singleton("Settings")