1
Fork 0
mirror of https://github.com/Steffo99/nanogolf.git synced 2024-11-22 08:04:21 +00:00
algodist-steffo-nanogolf/scenes/lobby_menu.tscn

56 lines
1.6 KiB
Text
Raw Normal View History

2024-02-28 05:30:45 +00:00
[gd_scene load_steps=3 format=3 uid="uid://cxpn0653ssa53"]
[ext_resource type="Script" path="res://scenes/lobby_menu.gd" id="1_egicy"]
[ext_resource type="PackedScene" uid="uid://cpyclix18d3it" path="res://scenes/players_list.tscn" id="2_o2f1d"]
[node name="LobbyMenu" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_egicy")
[node name="Layout" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="Title" type="RichTextLabel" parent="Layout"]
layout_mode = 2
bbcode_enabled = true
text = "[center][font_size=32px][b]Nanogolf[/b][/font_size]
Stanza multigiocatore[/center]"
fit_content = true
[node name="Padding" type="Control" parent="Layout"]
custom_minimum_size = Vector2(0, 16)
layout_mode = 2
[node name="PlayersList" parent="Layout" instance=ExtResource("2_o2f1d")]
layout_mode = 2
[node name="Padding2" type="Control" parent="Layout"]
custom_minimum_size = Vector2(0, 16)
layout_mode = 2
2024-03-07 04:06:37 +00:00
[node name="HBoxContainer" type="HBoxContainer" parent="Layout"]
2024-02-28 05:30:45 +00:00
layout_mode = 2
2024-03-07 04:06:37 +00:00
[node name="LeaveButton" type="Button" parent="Layout/HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
text = "Esci"
[node name="StartButton" type="Button" parent="Layout/HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
text = "Avvia"
[connection signal="pressed" from="Layout/HBoxContainer/LeaveButton" to="." method="_on_leave_button_pressed"]
[connection signal="pressed" from="Layout/HBoxContainer/StartButton" to="." method="_on_start_button_pressed"]