feat: update nakama, and patch, checkpoint for restore 2.3.1

This commit is contained in:
2026-07-13 18:11:56 +08:00
parent 8b7cec9a7a
commit e240aaae3e
22 changed files with 1700 additions and 8 deletions
+15
View File
@@ -0,0 +1,15 @@
extends SceneTree
func _init():
var me = ProjectSettings.localize_path(ProjectSettings.globalize_path(get_script().resource_path))
var dir = ProjectSettings.localize_path(me.get_base_dir())
if dir != "res://":
print("Must be run with the script dir as the res:// path")
print("Current path: ", ProjectSettings.globalize_path(dir))
print("RES:// path: ", ProjectSettings.globalize_path("res://"))
quit()
return
var n = load("res://tester.gd").new()
root.add_child(n)
current_scene = n