push project up

This commit is contained in:
2026-08-07 03:02:53 -05:00
parent 48acb406a7
commit de0da3de6e
40 changed files with 986 additions and 0 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)