-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.tscn
44 lines (32 loc) · 1.49 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
[gd_scene load_steps=9 format=2]
[ext_resource path="res://levels/Level0.tscn" type="PackedScene" id=1]
[ext_resource path="res://grid/grid_item_placed.wav" type="AudioStream" id=2]
[ext_resource path="res://music/main_music.wav" type="AudioStream" id=3]
[ext_resource path="res://effects/level_win.wav" type="AudioStream" id=4]
[ext_resource path="res://ui/Interface.tscn" type="PackedScene" id=5]
[ext_resource path="res://effects/level_lose.wav" type="AudioStream" id=6]
[ext_resource path="res://misc/ScreenShake.tscn" type="PackedScene" id=7]
[ext_resource path="res://Game.gd" type="Script" id=8]
[node name="Game" type="Node2D"]
script = ExtResource( 8 )
[node name="Level" parent="." instance=ExtResource( 1 )]
[node name="Camera" type="Camera2D" parent="."]
current = true
zoom = Vector2( 0.5, 0.5 )
[node name="Interface" parent="Camera" instance=ExtResource( 5 )]
margin_top = -68.0
margin_bottom = 67.0
[node name="ScreenShake" parent="Camera" instance=ExtResource( 7 )]
[node name="TurnTimer" type="Timer" parent="."]
[node name="GridItemPlaced" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 2 )
[node name="MusicPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 3 )
volume_db = -8.0
autoplay = true
bus = "Music"
[node name="LevelWin" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 4 )
[node name="LevelLose" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 6 )
[connection signal="finished" from="MusicPlayer" to="MusicPlayer" method="play"]