Floatbot assets added, and nodetunnel being implemented.

This commit is contained in:
2026-02-03 06:59:07 -05:00
parent b90fdaad98
commit e7570c78c3
105 changed files with 14184 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
@tool
extends EditorPlugin
var update_check = preload("updater/update_check.gd").new()
func _enter_tree():
add_child(update_check)
update_check.check_update(get_plugin_version())
func _exit_tree():
update_check.queue_free()