Internet/Local/Hotseat working (still need to test for bugs). ALso get an RPC error because we switch scene...
This commit is contained in:
parent
c95b8186ab
commit
c4909db2a5
654 changed files with 18133 additions and 39 deletions
13
UI/Lobby/LobbyEntry.gd
Normal file
13
UI/Lobby/LobbyEntry.gd
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue