Attempt to using Nakama as replacement of Low-Level ENet

This commit is contained in:
2025-12-02 00:58:44 +08:00
parent b27b612989
commit ead155afed
74 changed files with 14205 additions and 23315 deletions
+16
View File
@@ -0,0 +1,16 @@
extends Node
# This script is deprecated in favor of NakamaManager.
# The logic has been moved to allow the NakamaMultiplayerBridge to handle
# the networking transparently.
func _ready():
pass
func host_game():
# Redirect to NakamaManager
NakamaManager.host_game()
func join_game(match_id):
# Redirect to NakamaManager
NakamaManager.join_game(match_id)