summary refs log tree commit diff stats
path: root/randomizer.tscn
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-12-09 13:14:25 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2023-12-09 13:14:25 -0500
commitf0555579cd462b27c71c486bd7456265cc827937 (patch)
tree12dd8a500dd836f9466e534039fda46005547639 /randomizer.tscn
parente72b3e5fae63db0f669155b7b965c2c5fc6f97e3 (diff)
downloadlingo-randomizer-f0555579cd462b27c71c486bd7456265cc827937.tar.gz
lingo-randomizer-f0555579cd462b27c71c486bd7456265cc827937.tar.bz2
lingo-randomizer-f0555579cd462b27c71c486bd7456265cc827937.zip
Starting to work
Diffstat (limited to 'randomizer.tscn')
-rw-r--r--randomizer.tscn102
1 files changed, 102 insertions, 0 deletions
diff --git a/randomizer.tscn b/randomizer.tscn new file mode 100644 index 0000000..e4b96aa --- /dev/null +++ b/randomizer.tscn
@@ -0,0 +1,102 @@
1[gd_scene load_steps=9 format=2]
2
3[ext_resource path="res://nodes/label.tscn" type="PackedScene" id=1]
4[ext_resource path="res://fonts/Lingo.tres" type="DynamicFont" id=2]
5[ext_resource path="res://nodes/button.tscn" type="PackedScene" id=3]
6[ext_resource path="user://maps/randomizer/settings_buttons.gd" type="Script" id=4]
7[ext_resource path="user://maps/randomizer/settings_screen.gd" type="Script" id=5]
8[ext_resource path="res://fonts/Lingo35.tres" type="DynamicFont" id=6]
9
10[sub_resource type="StyleBoxFlat" id=1]
11bg_color = Color( 0, 0, 0, 0 )
12
13[sub_resource type="StyleBoxFlat" id=2]
14bg_color = Color( 1, 1, 1, 1 )
15border_width_left = 1
16border_width_top = 1
17border_width_right = 1
18border_width_bottom = 1
19border_color = Color( 1, 1, 0, 1 )
20border_blend = true
21corner_radius_top_left = 3
22corner_radius_top_right = 3
23corner_radius_bottom_right = 3
24corner_radius_bottom_left = 3
25expand_margin_left = 5.0
26expand_margin_right = 5.0
27expand_margin_top = 5.0
28expand_margin_bottom = 5.0
29
30[node name="settings_screen" type="Spatial"]
31script = ExtResource( 5 )
32
33[node name="Panel" type="Panel" parent="."]
34margin_right = 1920.0
35margin_bottom = 1080.0
36
37[node name="title" parent="Panel" instance=ExtResource( 1 )]
38margin_left = 0.0
39margin_top = 75.0
40margin_right = 1920.0
41margin_bottom = 225.0
42custom_fonts/font = ExtResource( 2 )
43text = "RANDOMIZER"
44valign = 1
45
46[node name="credit" parent="Panel" instance=ExtResource( 1 )]
47visible = false
48margin_left = 1278.0
49margin_top = 974.0
50margin_right = 1868.0
51margin_bottom = 1034.0
52custom_fonts/font = ExtResource( 2 )
53text = "Brenton Wildes"
54
55[node name="start_button" parent="Panel" instance=ExtResource( 3 )]
56margin_left = 255.0
57margin_top = 875.0
58margin_right = 891.0
59margin_bottom = 1025.0
60custom_colors/font_color_hover = Color( 1, 0.501961, 0, 1 )
61custom_fonts/font = ExtResource( 2 )
62text = "START"
63script = ExtResource( 4 )
64
65[node name="quit_button" parent="Panel" instance=ExtResource( 3 )]
66margin_left = 1102.0
67margin_top = 875.0
68margin_right = 1738.0
69margin_bottom = 1025.0
70custom_colors/font_color_hover = Color( 1, 0, 0, 1 )
71custom_fonts/font = ExtResource( 2 )
72text = "BACK"
73script = ExtResource( 4 )
74
75[node name="credit2" parent="Panel" instance=ExtResource( 1 )]
76margin_left = -105.0
77margin_top = 346.0
78margin_right = 485.0
79margin_bottom = 410.0
80custom_fonts/font = ExtResource( 2 )
81custom_styles/normal = SubResource( 1 )
82text = "SEED"
83align = 2
84
85[node name="seed_box" type="LineEdit" parent="Panel"]
86margin_left = 502.0
87margin_top = 295.0
88margin_right = 1144.0
89margin_bottom = 445.0
90custom_colors/selection_color = Color( 0.482353, 0, 0, 1 )
91custom_colors/cursor_color = Color( 0, 0, 0, 1 )
92custom_colors/font_color = Color( 0, 0, 0, 1 )
93custom_styles/focus = SubResource( 2 )
94align = 1
95caret_blink = true
96
97[node name="AcceptDialog" type="AcceptDialog" parent="Panel"]
98margin_right = 83.0
99margin_bottom = 58.0
100
101[connection signal="pressed" from="Panel/start_button" to="Panel/start_button" method="_start_pressed"]
102[connection signal="pressed" from="Panel/quit_button" to="Panel/quit_button" method="_back_pressed"]