diff options
Diffstat (limited to 'UI/Start.tscn')
-rw-r--r-- | UI/Start.tscn | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/UI/Start.tscn b/UI/Start.tscn index 64b789d..efa061c 100644 --- a/UI/Start.tscn +++ b/UI/Start.tscn @@ -52,11 +52,18 @@ grow_vertical = 2 [node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer"] layout_mode = 2 -[node name="Name" type="LineEdit" parent="CenterContainer/VBoxContainer"] +[node name="GameName" type="LineEdit" parent="CenterContainer/VBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(175, 0) +layout_mode = 2 +theme_override_font_sizes/font_size = 18 +placeholder_text = "Game Name" + +[node name="Username" type="LineEdit" parent="CenterContainer/VBoxContainer"] unique_name_in_owner = true custom_minimum_size = Vector2(150, 0) layout_mode = 2 -placeholder_text = "Name" +placeholder_text = "Username" [node name="Host" type="Button" parent="CenterContainer/VBoxContainer"] unique_name_in_owner = true @@ -86,5 +93,15 @@ mouse_default_cursor_shape = 2 theme_override_font_sizes/font_size = 24 text = "Join" +[node name="Search" type="Button" parent="CenterContainer/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +mouse_default_cursor_shape = 2 +theme_override_font_sizes/font_size = 24 +text = "Search" + +[node name="ServerHost" type="HTTPRequest" parent="."] + [connection signal="pressed" from="CenterContainer/VBoxContainer/Host" to="." method="_on_host_pressed"] [connection signal="pressed" from="CenterContainer/VBoxContainer/Join" to="." method="_on_join_pressed"] +[connection signal="pressed" from="CenterContainer/VBoxContainer/Search" to="." method="_on_search_pressed"] |