mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 01:29:49 +00:00
11 lines
197 B
GDScript3
11 lines
197 B
GDScript3
|
tool
|
||
|
extends EditorPlugin
|
||
|
|
||
|
|
||
|
func _enter_tree() -> void:
|
||
|
add_autoload_singleton("Keychain", "res://addons/keychain/Keychain.gd")
|
||
|
|
||
|
|
||
|
func _exit_tree() -> void:
|
||
|
remove_autoload_singleton("Keychain")
|