Project commit

This commit is contained in:
2025-02-17 15:54:51 -08:00
parent bdc2d685e8
commit 6849c6c98e
13 changed files with 743 additions and 2 deletions

20
addons/bson/plugin.gd Normal file
View File

@ -0,0 +1,20 @@
@tool
extends EditorPlugin
const AUTOLOAD_NAME = "BSON"
#func _enter_tree() -> void:
# Initialization of the plugin goes here.
#pass
#func _exit_tree() -> void:
# Clean-up of the plugin goes here.
#pass
func _enable_plugin() -> void:
add_autoload_singleton(AUTOLOAD_NAME, "res://addons/bson/bson.gd")
func _disable_plugin() -> void:
remove_autoload_singleton(AUTOLOAD_NAME)