diff options
Diffstat (limited to 'UI/Start.tscn')
-rw-r--r-- | UI/Start.tscn | 44 |
1 files changed, 37 insertions, 7 deletions
diff --git a/UI/Start.tscn b/UI/Start.tscn index b85d869..64b789d 100644 --- a/UI/Start.tscn +++ b/UI/Start.tscn @@ -1,6 +1,8 @@ -[gd_scene load_steps=2 format=3 uid="uid://bcbxer883ygg7"] +[gd_scene load_steps=4 format=3 uid="uid://bcbxer883ygg7"] [ext_resource type="Script" path="res://UI/Start.gd" id="1_h1h6c"] +[ext_resource type="Theme" uid="uid://c7f1ftrx53ag1" path="res://theme.tres" id="1_uriow"] +[ext_resource type="Texture2D" uid="uid://kwgx33awj4y2" path="res://UI/Assets/Enjl-Starry Space Background/background_1.png" id="2_fxy5w"] [node name="Start" type="Control"] layout_mode = 3 @@ -9,8 +11,36 @@ anchor_right = 1.0 anchor_bottom = 1.0 grow_horizontal = 2 grow_vertical = 2 +theme = ExtResource("1_uriow") script = ExtResource("1_h1h6c") +[node name="Background" type="Control" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="ColorRect" type="ColorRect" parent="Background"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0, 0, 0, 1) + +[node name="TextureRect" type="TextureRect" parent="Background"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = ExtResource("2_fxy5w") +stretch_mode = 1 + [node name="CenterContainer" type="CenterContainer" parent="."] layout_mode = 1 anchors_preset = 15 @@ -22,29 +52,28 @@ grow_vertical = 2 [node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer"] layout_mode = 2 -[node name="Name" type="TextEdit" parent="CenterContainer/VBoxContainer"] +[node name="Name" type="LineEdit" parent="CenterContainer/VBoxContainer"] unique_name_in_owner = true -custom_minimum_size = Vector2(0, 50) +custom_minimum_size = Vector2(150, 0) layout_mode = 2 placeholder_text = "Name" [node name="Host" 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 = "Host" -[node name="IP" type="TextEdit" parent="CenterContainer/VBoxContainer"] +[node name="IP" type="LineEdit" parent="CenterContainer/VBoxContainer"] unique_name_in_owner = true -custom_minimum_size = Vector2(150, 50) layout_mode = 2 size_flags_vertical = 3 theme_override_font_sizes/font_size = 18 placeholder_text = "Join IP" -[node name="Port" type="TextEdit" parent="CenterContainer/VBoxContainer"] +[node name="Port" type="LineEdit" parent="CenterContainer/VBoxContainer"] unique_name_in_owner = true -custom_minimum_size = Vector2(150, 50) layout_mode = 2 size_flags_vertical = 3 theme_override_font_sizes/font_size = 18 @@ -53,6 +82,7 @@ placeholder_text = "Host&Join Port" [node name="Join" 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 = "Join" |