-
Notifications
You must be signed in to change notification settings - Fork 1
/
TitleScene.tscn
129 lines (110 loc) · 3.65 KB
/
TitleScene.tscn
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[gd_scene load_steps=17 format=2]
[ext_resource path="res://TitleScreenTempBG.jpg" type="Texture" id=1]
[ext_resource path="res://TitleScreenTemp.jpg" type="Texture" id=2]
[ext_resource path="res://TitleScene.gd" type="Script" id=3]
[ext_resource path="res://Themes/buttons_v2.tres" type="Theme" id=4]
[ext_resource path="res://Fonts/8-bit-operator/8bitOperatorPlus8-Regular.ttf" type="DynamicFontData" id=5]
[ext_resource path="res://UI/PopupMenuAIMode.tscn" type="PackedScene" id=6]
[ext_resource path="res://Music/The-One-And-Only.mp3" type="AudioStream" id=7]
[ext_resource path="res://TitleScreenTempBGBlack.jpg" type="Texture" id=8]
[ext_resource path="res://Themes/buttons.tres" type="DynamicFont" id=9]
[ext_resource path="res://Fonts/8-bit-operator/8bitOperatorPlus8-Bold.ttf" type="DynamicFontData" id=10]
[sub_resource type="DynamicFontData" id=4]
font_path = "res://Fonts/blox/Blox2.ttf"
[sub_resource type="DynamicFont" id=5]
size = 24
font_data = SubResource( 4 )
[sub_resource type="DynamicFont" id=2]
size = 14
font_data = ExtResource( 5 )
[sub_resource type="DynamicFontData" id=6]
font_path = "res://Fonts/8-bit-operator/8bitOperatorPlusSC-Bold.ttf"
[sub_resource type="DynamicFont" id=7]
size = 17
font_data = SubResource( 6 )
[sub_resource type="DynamicFont" id=8]
font_data = ExtResource( 10 )
[node name="TitleScene" type="Control"]
margin_left = 77.0
margin_right = 117.0
margin_bottom = 40.0
script = ExtResource( 3 )
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
pause_mode = 2
stream = ExtResource( 7 )
volume_db = -20.0
autoplay = true
[node name="TextureRect3" type="TextureRect" parent="."]
margin_left = -80.0
margin_top = -6.0
margin_right = 388.0
margin_bottom = 329.0
texture = ExtResource( 8 )
expand = true
[node name="TextureRect" type="TextureRect" parent="."]
margin_top = 47.0
margin_right = 289.0
margin_bottom = 320.0
texture = ExtResource( 2 )
expand = true
stretch_mode = 1
[node name="TextureRect2" type="TextureRect" parent="."]
margin_right = 289.0
margin_bottom = 54.0
texture = ExtResource( 1 )
expand = true
[node name="Label" type="Label" parent="."]
margin_left = 4.0
margin_top = 1.0
margin_right = 291.0
margin_bottom = 52.0
rect_pivot_offset = Vector2( 0, -2 )
custom_fonts/font = SubResource( 5 )
text = "Dan Chalk s
Treasure Hunt"
align = 1
valign = 1
[node name="LineEdit" type="LineEdit" parent="."]
margin_left = 68.0
margin_top = 60.0
margin_right = 227.0
margin_bottom = 81.0
custom_fonts/font = SubResource( 2 )
align = 1
max_length = 6
placeholder_text = "Enter a Random Seed"
[node name="ManualPlayButton" type="ToolButton" parent="."]
margin_left = 9.0
margin_top = 286.0
margin_right = 144.0
margin_bottom = 313.0
rect_pivot_offset = Vector2( 61, 16 )
theme = ExtResource( 4 )
custom_fonts/font = SubResource( 7 )
text = "Manual Play"
flat = false
[node name="AiPlayButton1" type="MenuButton" parent="."]
margin_left = 149.0
margin_top = 287.0
margin_right = 284.0
margin_bottom = 314.0
rect_pivot_offset = Vector2( 61, 16 )
theme = ExtResource( 4 )
custom_fonts/font = ExtResource( 9 )
text = "AI Play"
flat = false
[node name="PopupMenuAIMode" parent="." instance=ExtResource( 6 )]
margin_left = -77.0
margin_top = 1.0
margin_right = 130.0
margin_bottom = 94.0
[node name="Label2" type="Label" parent="."]
margin_left = 188.0
margin_top = 3.0
margin_right = 228.0
margin_bottom = 17.0
custom_fonts/font = SubResource( 8 )
text = "'"
[connection signal="text_changed" from="LineEdit" to="." method="_on_LineEdit_text_changed"]
[connection signal="pressed" from="ManualPlayButton" to="." method="_on_ManualPlayButton_pressed"]
[connection signal="button_down" from="AiPlayButton1" to="." method="_on_AiPlayButton1_button_down"]