-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.tscn
95 lines (80 loc) · 2.67 KB
/
Game.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
[gd_scene load_steps=12 format=2]
[ext_resource path="res://Scripts/Game.gd" type="Script" id=1]
[ext_resource path="res://Sprites/pngwing.com.png" type="Texture" id=2]
[ext_resource path="res://Score.tscn" type="PackedScene" id=3]
[ext_resource path="res://Sprites/background.png" type="Texture" id=4]
[ext_resource path="res://game_font.tres" type="DynamicFont" id=5]
[ext_resource path="res://gurahana-clean.png" type="Texture" id=6]
[ext_resource path="res://Godot-Fontpack-d244bf6170b399a6d4d26a0d906058ddf2dafdf1/fonts/montreal/Montreal-Bold.ttf" type="DynamicFontData" id=7]
[ext_resource path="res://mactonite_-_One_Fine_Concerto.ogg" type="AudioStream" id=8]
[sub_resource type="Gradient" id=1]
offsets = PoolRealArray( 0, 0.221557, 1 )
colors = PoolColorArray( 0, 0, 0, 1, 0.263473, 0.263473, 0.263473, 1, 1, 1, 1, 1 )
[sub_resource type="GradientTexture" id=2]
gradient = SubResource( 1 )
[sub_resource type="DynamicFont" id=3]
size = 61
font_data = ExtResource( 7 )
[node name="Game" type="Node2D"]
script = ExtResource( 1 )
[node name="background" type="Sprite" parent="."]
position = Vector2( 502.957, 303.685 )
z_index = -100
texture = ExtResource( 4 )
[node name="goal" type="Sprite" parent="."]
position = Vector2( 330, 209 )
scale = Vector2( 0.1, 0.1 )
z_index = -7
texture = ExtResource( 2 )
normal_map = SubResource( 2 )
[node name="Timer" type="Timer" parent="."]
wait_time = 0.001
autostart = true
[node name="HitStream" type="Node2D" parent="."]
position = Vector2( 1090, 209 )
[node name="Combo" type="Label" parent="."]
margin_left = 14.0
margin_top = 194.372
margin_right = 221.0
margin_bottom = 317.372
custom_fonts/font = ExtResource( 5 )
text = "1000"
align = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Hit" type="Label" parent="."]
margin_left = 233.436
margin_top = 122.236
margin_right = 416.436
margin_bottom = 182.236
rect_scale = Vector2( 0.98749, 1.01221 )
rect_pivot_offset = Vector2( 925.2, 173.047 )
custom_fonts/font = ExtResource( 5 )
align = 1
clip_text = true
uppercase = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Score" parent="." instance=ExtResource( 3 )]
visible = false
position = Vector2( 380, 401.386 )
[node name="gurahana-clean" type="Sprite" parent="."]
position = Vector2( 130.765, 431.049 )
scale = Vector2( 0.2, 0.2 )
texture = ExtResource( 6 )
[node name="Combo Label" type="Label" parent="."]
margin_left = 14.0
margin_top = 120.0
margin_right = 240.0
margin_bottom = 275.0
custom_fonts/font = SubResource( 3 )
text = "Combo
"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Song" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 8 )
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]