freeftf/menus/create.tscn

109 lines
2.8 KiB
Text
Raw Normal View History

2024-08-02 20:13:42 +02:00
[gd_scene load_steps=2 format=3 uid="uid://bl6wir1clomvu"]
[ext_resource type="Script" path="res://scripts/create.gd" id="1_ewomb"]
[node name="create" 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_ewomb")
[node name="player_list" type="VBoxContainer" parent="."]
layout_mode = 0
offset_right = 40.0
offset_bottom = 40.0
[node name="list" type="Label" parent="player_list"]
layout_mode = 2
theme_override_font_sizes/font_size = 32
[node name="player_customization" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -128.0
offset_top = -32.0
offset_right = 128.0
offset_bottom = 32.0
grow_horizontal = 2
grow_vertical = 2
2024-08-13 20:43:54 +02:00
[node name="name" type="LineEdit" parent="player_customization"]
2024-08-02 20:13:42 +02:00
custom_minimum_size = Vector2(256, 64)
layout_mode = 2
theme_override_font_sizes/font_size = 32
placeholder_text = "Username"
2024-08-02 20:13:42 +02:00
2024-08-13 20:43:54 +02:00
[node name="ip" type="LineEdit" parent="player_customization"]
custom_minimum_size = Vector2(256, 64)
layout_mode = 2
theme_override_font_sizes/font_size = 32
placeholder_text = "Room Name"
[node name="join" type="Button" parent="player_customization"]
layout_mode = 2
theme_override_font_sizes/font_size = 32
text = "Join Game"
2024-08-02 20:13:42 +02:00
[node name="start" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 3
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = -184.0
offset_top = -53.0
grow_horizontal = 0
grow_vertical = 0
[node name="start" type="Button" parent="start"]
visible = false
2024-08-02 20:13:42 +02:00
layout_mode = 2
theme_override_font_sizes/font_size = 32
disabled = true
2024-08-02 20:13:42 +02:00
text = "Start Game"
2024-08-13 22:12:37 +02:00
[node name="options" type="VBoxContainer" parent="."]
visible = false
layout_mode = 1
anchors_preset = 1
anchor_left = 1.0
anchor_right = 1.0
offset_left = -272.0
offset_bottom = 53.0
grow_horizontal = 0
[node name="map_name" type="HBoxContainer" parent="options"]
layout_mode = 2
size_flags_horizontal = 8
size_flags_vertical = 4
[node name="Label" type="Label" parent="options/map_name"]
layout_mode = 2
theme_override_font_sizes/font_size = 32
text = "Map"
[node name="OptionButton" type="OptionButton" parent="options/map_name"]
layout_mode = 2
size_flags_horizontal = 4
size_flags_vertical = 4
theme_override_font_sizes/font_size = 32
disabled = true
alignment = 1
selected = 0
item_count = 2
popup/item_0/text = "Mansion"
popup/item_1/text = "Placeholder"
popup/item_1/id = 1
[connection signal="pressed" from="player_customization/join" to="." method="_on_join_pressed"]
2024-08-02 20:13:42 +02:00
[connection signal="pressed" from="start/start" to="." method="_on_start_pressed"]
2024-08-13 22:12:37 +02:00
[connection signal="item_selected" from="options/map_name/OptionButton" to="." method="_on_option_button_item_selected"]