Internet/Local/Hotseat working (still need to test for bugs). ALso get an RPC error because we switch scene...

This commit is contained in:
Sch1nken 2024-03-24 03:30:54 +01:00
parent c95b8186ab
commit c4909db2a5
654 changed files with 18133 additions and 39 deletions

13
UI/Lobby/LobbyEntry.gd Normal file
View file

@ -0,0 +1,13 @@
extends HBoxContainer
signal connect_pressed
var lobby_data: Dictionary = {}
@onready var label = $Label
func _ready() -> void:
label.text = lobby_data.get("lobby_name", "Unknown")
func _on_button_pressed():
connect_pressed.emit(lobby_data)