feat: add multiple done boxes

bug: can edit the text only once for whatever reason?
This commit is contained in:
LunarAkai 2025-07-02 23:22:29 +02:00
commit 3fa14dc268
16 changed files with 215 additions and 48 deletions

10
addons/uuid/plugin.gd Normal file
View file

@ -0,0 +1,10 @@
@tool
extends EditorPlugin
const AUTOLOAD_NAME = 'uuid'
func _enable_plugin() -> void:
add_autoload_singleton(AUTOLOAD_NAME, 'res://addons/uuid/uuid.gd')
func _disable_plugin() -> void:
remove_autoload_singleton(AUTOLOAD_NAME)