-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMain.tscn
More file actions
105 lines (89 loc) · 4.15 KB
/
Main.tscn
File metadata and controls
105 lines (89 loc) · 4.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[gd_scene load_steps=7 format=3 uid="uid://blqfu67pm8yq3"]
[ext_resource type="Script" path="res://Main.gd" id="1_pki7g"]
[ext_resource type="Texture2D" uid="uid://bkp2ud52syqfn" path="res://Assets/backgrounds/johannes-plenio-RwHv7LgeC7s-unsplash.jpg" id="2_gkc5u"]
[ext_resource type="Texture2D" uid="uid://di3jnefwt6276" path="res://Assets/backgrounds/mushroomRingBackground.png" id="3_4iryg"]
[ext_resource type="PackedScene" uid="uid://blo7ghg04650k" path="res://Characters/Player/dummy_player.tscn" id="4_j2je2"]
[ext_resource type="Theme" uid="uid://ck5rsqoxlpelk" path="res://Helpers/MainTheme.tres" id="5_jn3yo"]
[ext_resource type="FontFile" uid="uid://lih7w08v7tju" path="res://Assets/Icons/TheHeartOfEverythingDemo-KRdD.ttf" id="6_h3wju"]
[node name="Main" type="Node2D"]
script = ExtResource("1_pki7g")
[node name="Johannes-plenio-rwHv7LgeC7s-unsplash" type="Sprite2D" parent="."]
visible = false
position = Vector2(609, 321)
scale = Vector2(0.287775, 0.287775)
texture = ExtResource("2_gkc5u")
[node name="MushroomRingBackground" type="Sprite2D" parent="."]
position = Vector2(960, 540)
texture = ExtResource("3_4iryg")
[node name="DummyPlayer" parent="MushroomRingBackground" instance=ExtResource("4_j2je2")]
position = Vector2(-82, -1)
[node name="CenterContainer" type="CenterContainer" parent="MushroomRingBackground"]
custom_minimum_size = Vector2(500, 500)
offset_left = -83.0
offset_top = -347.0
offset_right = 1077.0
offset_bottom = 295.0
[node name="VBoxContainer" type="VBoxContainer" parent="MushroomRingBackground/CenterContainer"]
custom_minimum_size = Vector2(300, 500)
layout_mode = 2
size_flags_stretch_ratio = 0.0
theme_override_constants/separation = 20
alignment = 1
[node name="Start" type="Button" parent="MushroomRingBackground/CenterContainer/VBoxContainer"]
custom_minimum_size = Vector2(200, 80)
layout_mode = 2
theme = ExtResource("5_jn3yo")
text = "Start New Game"
[node name="Load" type="Button" parent="MushroomRingBackground/CenterContainer/VBoxContainer" groups=["Saves"]]
custom_minimum_size = Vector2(200, 80)
layout_mode = 2
theme = ExtResource("5_jn3yo")
text = "Resume Game"
[node name="Halfway" type="Button" parent="MushroomRingBackground/CenterContainer/VBoxContainer" groups=["Saves"]]
custom_minimum_size = Vector2(200, 80)
layout_mode = 2
theme = ExtResource("5_jn3yo")
text = "Resume from Tower
"
[node name="Settings" type="Button" parent="MushroomRingBackground/CenterContainer/VBoxContainer"]
custom_minimum_size = Vector2(200, 80)
layout_mode = 2
theme = ExtResource("5_jn3yo")
text = "Settings"
[node name="Quit" type="Button" parent="MushroomRingBackground/CenterContainer/VBoxContainer"]
custom_minimum_size = Vector2(200, 80)
layout_mode = 2
theme = ExtResource("5_jn3yo")
text = "Quit"
[node name="Message" type="Label" parent="."]
visible = false
offset_left = 738.0
offset_top = 238.0
offset_right = 1064.0
offset_bottom = 316.0
theme_override_font_sizes/font_size = 50
[node name="Label" type="Label" parent="."]
offset_left = 73.0
offset_top = 80.0
offset_right = 878.0
offset_bottom = 280.0
theme_override_colors/font_color = Color(0.870588, 0.74902, 0.345098, 1)
theme_override_fonts/font = ExtResource("6_h3wju")
theme_override_font_sizes/font_size = 200
text = "Whispering"
[node name="Label" type="Label" parent="Label"]
layout_mode = 0
offset_left = 226.0
offset_top = 157.0
offset_right = 855.0
offset_bottom = 357.0
theme_override_colors/font_color = Color(0.870588, 0.74902, 0.345098, 1)
theme_override_fonts/font = ExtResource("6_h3wju")
theme_override_font_sizes/font_size = 200
text = "woods
"
[connection signal="pressed" from="MushroomRingBackground/CenterContainer/VBoxContainer/Start" to="." method="_on_start_pressed"]
[connection signal="pressed" from="MushroomRingBackground/CenterContainer/VBoxContainer/Load" to="." method="_on_load_pressed"]
[connection signal="pressed" from="MushroomRingBackground/CenterContainer/VBoxContainer/Halfway" to="." method="_on_halfway_pressed"]
[connection signal="pressed" from="MushroomRingBackground/CenterContainer/VBoxContainer/Settings" to="." method="_on_settings_pressed"]
[connection signal="pressed" from="MushroomRingBackground/CenterContainer/VBoxContainer/Quit" to="." method="_on_quit_pressed"]