feat: Add new visual effects, player and lobby scenes, and a special tiles manager.
This commit is contained in:
+7
-1
@@ -247,11 +247,17 @@ func _on_server_option_selected(index: int) -> void:
|
||||
if server_ip_input: NakamaManager.set_server(server_ip_input.text)
|
||||
LobbyManager.is_lan_mode = false
|
||||
connection_status.text = "Mode: Online (Nakama Remote)"
|
||||
else:
|
||||
elif index == 2:
|
||||
# LAN Direct
|
||||
if server_ip_input: server_ip_input.visible = false
|
||||
LobbyManager.is_lan_mode = true
|
||||
connection_status.text = "Mode: LAN Direct (No Server)"
|
||||
elif index == 3:
|
||||
# Tekton Dash EU
|
||||
if server_ip_input: server_ip_input.visible = false
|
||||
NakamaManager.set_server("tektondash.vps.webdock.cloud")
|
||||
LobbyManager.is_lan_mode = false
|
||||
connection_status.text = "Mode: Online (Tekton Dash EU)"
|
||||
|
||||
func _on_server_ip_submitted(new_text: String) -> void:
|
||||
if server_option and server_option.selected == 1:
|
||||
|
||||
Reference in New Issue
Block a user