diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-12-09 13:14:25 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-12-09 13:14:25 -0500 |
commit | f0555579cd462b27c71c486bd7456265cc827937 (patch) | |
tree | 12dd8a500dd836f9466e534039fda46005547639 /randomizer.tscn | |
parent | e72b3e5fae63db0f669155b7b965c2c5fc6f97e3 (diff) | |
download | lingo-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.tscn | 102 |
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] | ||
11 | bg_color = Color( 0, 0, 0, 0 ) | ||
12 | |||
13 | [sub_resource type="StyleBoxFlat" id=2] | ||
14 | bg_color = Color( 1, 1, 1, 1 ) | ||
15 | border_width_left = 1 | ||
16 | border_width_top = 1 | ||
17 | border_width_right = 1 | ||
18 | border_width_bottom = 1 | ||
19 | border_color = Color( 1, 1, 0, 1 ) | ||
20 | border_blend = true | ||
21 | corner_radius_top_left = 3 | ||
22 | corner_radius_top_right = 3 | ||
23 | corner_radius_bottom_right = 3 | ||
24 | corner_radius_bottom_left = 3 | ||
25 | expand_margin_left = 5.0 | ||
26 | expand_margin_right = 5.0 | ||
27 | expand_margin_top = 5.0 | ||
28 | expand_margin_bottom = 5.0 | ||
29 | |||
30 | [node name="settings_screen" type="Spatial"] | ||
31 | script = ExtResource( 5 ) | ||
32 | |||
33 | [node name="Panel" type="Panel" parent="."] | ||
34 | margin_right = 1920.0 | ||
35 | margin_bottom = 1080.0 | ||
36 | |||
37 | [node name="title" parent="Panel" instance=ExtResource( 1 )] | ||
38 | margin_left = 0.0 | ||
39 | margin_top = 75.0 | ||
40 | margin_right = 1920.0 | ||
41 | margin_bottom = 225.0 | ||
42 | custom_fonts/font = ExtResource( 2 ) | ||
43 | text = "RANDOMIZER" | ||
44 | valign = 1 | ||
45 | |||
46 | [node name="credit" parent="Panel" instance=ExtResource( 1 )] | ||
47 | visible = false | ||
48 | margin_left = 1278.0 | ||
49 | margin_top = 974.0 | ||
50 | margin_right = 1868.0 | ||
51 | margin_bottom = 1034.0 | ||
52 | custom_fonts/font = ExtResource( 2 ) | ||
53 | text = "Brenton Wildes" | ||
54 | |||
55 | [node name="start_button" parent="Panel" instance=ExtResource( 3 )] | ||
56 | margin_left = 255.0 | ||
57 | margin_top = 875.0 | ||
58 | margin_right = 891.0 | ||
59 | margin_bottom = 1025.0 | ||
60 | custom_colors/font_color_hover = Color( 1, 0.501961, 0, 1 ) | ||
61 | custom_fonts/font = ExtResource( 2 ) | ||
62 | text = "START" | ||
63 | script = ExtResource( 4 ) | ||
64 | |||
65 | [node name="quit_button" parent="Panel" instance=ExtResource( 3 )] | ||
66 | margin_left = 1102.0 | ||
67 | margin_top = 875.0 | ||
68 | margin_right = 1738.0 | ||
69 | margin_bottom = 1025.0 | ||
70 | custom_colors/font_color_hover = Color( 1, 0, 0, 1 ) | ||
71 | custom_fonts/font = ExtResource( 2 ) | ||
72 | text = "BACK" | ||
73 | script = ExtResource( 4 ) | ||
74 | |||
75 | [node name="credit2" parent="Panel" instance=ExtResource( 1 )] | ||
76 | margin_left = -105.0 | ||
77 | margin_top = 346.0 | ||
78 | margin_right = 485.0 | ||
79 | margin_bottom = 410.0 | ||
80 | custom_fonts/font = ExtResource( 2 ) | ||
81 | custom_styles/normal = SubResource( 1 ) | ||
82 | text = "SEED" | ||
83 | align = 2 | ||
84 | |||
85 | [node name="seed_box" type="LineEdit" parent="Panel"] | ||
86 | margin_left = 502.0 | ||
87 | margin_top = 295.0 | ||
88 | margin_right = 1144.0 | ||
89 | margin_bottom = 445.0 | ||
90 | custom_colors/selection_color = Color( 0.482353, 0, 0, 1 ) | ||
91 | custom_colors/cursor_color = Color( 0, 0, 0, 1 ) | ||
92 | custom_colors/font_color = Color( 0, 0, 0, 1 ) | ||
93 | custom_styles/focus = SubResource( 2 ) | ||
94 | align = 1 | ||
95 | caret_blink = true | ||
96 | |||
97 | [node name="AcceptDialog" type="AcceptDialog" parent="Panel"] | ||
98 | margin_right = 83.0 | ||
99 | margin_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"] | ||