diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2025-02-15 12:35:53 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2025-02-15 12:35:53 +0100 |
commit | 0d17544b3e3220a7493319271b79ce435f991a0b (patch) | |
tree | 77800833fb9074ecb717b1ac5af3433eb744a55b /UI/GamesLobby/lobby_game.tscn | |
parent | 5b35174ffab42f0331f1a6527ef6bbab7a3dbdcb (diff) |
next commit
Diffstat (limited to 'UI/GamesLobby/lobby_game.tscn')
-rw-r--r-- | UI/GamesLobby/lobby_game.tscn | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/UI/GamesLobby/lobby_game.tscn b/UI/GamesLobby/lobby_game.tscn new file mode 100644 index 0000000..1517416 --- /dev/null +++ b/UI/GamesLobby/lobby_game.tscn @@ -0,0 +1,19 @@ +[gd_scene load_steps=2 format=3 uid="uid://cs2a7wfrj4wn0"] + +[ext_resource type="Script" path="res://UI/GamesLobby/lobby_game.gd" id="1_cvsql"] + +[node name="LobbyGame" type="HBoxContainer"] +script = ExtResource("1_cvsql") + +[node name="Name" type="Label" parent="."] +unique_name_in_owner = true +layout_mode = 2 +text = "Game Name" + +[node name="Join" type="Button" parent="."] +unique_name_in_owner = true +layout_mode = 2 +mouse_default_cursor_shape = 2 +text = "Join" + +[connection signal="pressed" from="Join" to="." method="_on_join_pressed"] |