Milestone 3: Freezer

The freezer is now implemented, just as it worked in the original. There are also a few fixes here and there in preparation for Milestonr 4.
This commit is contained in:
patrick_pluto 2024-08-04 13:41:19 +02:00
commit a92202b536
14 changed files with 199 additions and 114 deletions

View file

@ -40,6 +40,17 @@ layout_mode = 2
theme_override_font_sizes/font_size = 32
placeholder_text = "Name"
[node name="ip" type="TextEdit" parent="player_customization"]
custom_minimum_size = Vector2(256, 64)
layout_mode = 2
theme_override_font_sizes/font_size = 32
placeholder_text = "IP Address"
[node name="join" type="Button" parent="player_customization"]
layout_mode = 2
theme_override_font_sizes/font_size = 32
text = "Join Game"
[node name="start" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 3
@ -53,8 +64,11 @@ grow_horizontal = 0
grow_vertical = 0
[node name="start" type="Button" parent="start"]
visible = false
layout_mode = 2
theme_override_font_sizes/font_size = 32
disabled = true
text = "Start Game"
[connection signal="pressed" from="player_customization/join" to="." method="_on_join_pressed"]
[connection signal="pressed" from="start/start" to="." method="_on_start_pressed"]