-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathStartGame.tscn
141 lines (120 loc) · 4.02 KB
/
StartGame.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
130
131
132
133
134
135
136
137
138
139
140
141
[gd_scene load_steps=12 format=2]
[ext_resource path="res://theme.tres" type="Theme" id=1]
[ext_resource path="res://StartGame.gd" type="Script" id=2]
[ext_resource path="res://warped city files/ENVIRONMENT/background/skyline-b.png" type="Texture" id=3]
[ext_resource path="res://fonts/TerminalGrotesque.tres" type="DynamicFont" id=4]
[ext_resource path="res://QuitKey.tscn" type="PackedScene" id=5]
[ext_resource path="res://Pixel Simplicity GUI/quit_blue_default.png" type="Texture" id=6]
[ext_resource path="res://Pixel Simplicity GUI/quit_blue_active.png" type="Texture" id=7]
[ext_resource path="res://Pixel Simplicity GUI/quit_red_default.png" type="Texture" id=8]
[ext_resource path="res://Pixel Simplicity GUI/quit_red_active.png" type="Texture" id=9]
[ext_resource path="res://Cyber-Dream-Loop.ogg" type="AudioStream" id=10]
[ext_resource path="res://select.wav" type="AudioStream" id=11]
[node name="StartGame" type="Control"]
theme = ExtResource( 1 )
script = ExtResource( 2 )
[node name="TextureRect" type="TextureRect" parent="."]
margin_left = -519.027
margin_top = -389.562
margin_right = 280.973
margin_bottom = -89.5617
rect_scale = Vector2( 4, 4 )
texture = ExtResource( 3 )
stretch_mode = 2
[node name="Name" type="Label" parent="."]
margin_top = 21.9533
margin_right = 640.0
margin_bottom = 152.953
custom_fonts/font = ExtResource( 4 )
text = "Hunt for the
SHADOW RIDER"
align = 1
uppercase = true
[node name="Play" type="Button" parent="."]
margin_left = 215.0
margin_top = 176.0
margin_right = 319.0
margin_bottom = 196.0
rect_scale = Vector2( 2, 2 )
text = "Play"
[node name="Help" type="Button" parent="."]
margin_left = 216.0
margin_top = 234.0
margin_right = 320.0
margin_bottom = 254.0
rect_scale = Vector2( 2, 2 )
text = "Help"
[node name="Credits" type="Button" parent="."]
margin_left = 216.0
margin_top = 288.397
margin_right = 320.0
margin_bottom = 308.397
rect_scale = Vector2( 2, 2 )
text = "Credits"
[node name="Tween" type="Tween" parent="."]
[node name="QuitKey" parent="." instance=ExtResource( 5 )]
[node name="Return" type="TextureButton" parent="."]
margin_left = 604.0
margin_top = -352.0
margin_right = 618.0
margin_bottom = -338.0
rect_scale = Vector2( 2, 2 )
texture_normal = ExtResource( 6 )
texture_pressed = ExtResource( 7 )
[node name="Return2" type="TextureButton" parent="."]
margin_left = 1244.0
margin_top = 8.0
margin_right = 1258.0
margin_bottom = 22.0
rect_scale = Vector2( 2, 2 )
texture_normal = ExtResource( 6 )
texture_pressed = ExtResource( 7 )
[node name="Quit" type="TextureButton" parent="."]
margin_left = 604.0
margin_top = 8.0
margin_right = 618.0
margin_bottom = 22.0
rect_scale = Vector2( 2, 2 )
texture_normal = ExtResource( 8 )
texture_pressed = ExtResource( 9 )
[node name="CreditsText" type="Label" parent="."]
margin_top = -360.0
margin_right = 320.0
margin_bottom = -180.0
rect_scale = Vector2( 2, 2 )
text = "Art by Ansimuz
UI by domsson and TokyoGeisha
Music by Eric Matyas
www.soundimage.org
Fonts by Raphaël Bastide and Jayvee Enaguas
Tools: Godot, Sfxr, Audacity, GIMP, Audacity, Ubuntu
Made for Open Jam 2019 by bluestreak0
License: GPLv3"
align = 1
valign = 1
autowrap = true
[node name="HelpText" type="Label" parent="."]
margin_left = 640.0
margin_right = 960.0
margin_bottom = 180.0
rect_scale = Vector2( 2, 2 )
text = "Move: Arrow keys
Fire: Z
Pause: Escape
Quit: Q"
align = 1
valign = 1
autowrap = true
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 10 )
volume_db = -17.931
autoplay = true
[node name="SelectBeep" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 11 )
volume_db = -18.652
[connection signal="pressed" from="Play" to="." method="_on_Button_pressed"]
[connection signal="pressed" from="Help" to="." method="_on_Help_pressed"]
[connection signal="pressed" from="Credits" to="." method="_on_Credits_pressed"]
[connection signal="pressed" from="Return" to="." method="_on_Return_pressed"]
[connection signal="pressed" from="Return2" to="." method="_on_Return_pressed"]
[connection signal="pressed" from="Quit" to="." method="_on_Quit_pressed"]