-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tscn
58 lines (43 loc) · 1.85 KB
/
main.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
[gd_scene load_steps=10 format=2]
[ext_resource path="res://bgm/basswalk.ogg" type="AudioStream" id=1]
[ext_resource path="res://bgs/sky1.png" type="Texture" id=2]
[ext_resource path="res://Level1.tscn" type="PackedScene" id=3]
[ext_resource path="res://entities/tank/Tank.tscn" type="PackedScene" id=4]
[ext_resource path="res://gui/WealthBar.tscn" type="PackedScene" id=5]
[ext_resource path="res://gui/MainMenu.tscn" type="PackedScene" id=6]
[ext_resource path="res://gui/GameOver.tscn" type="PackedScene" id=7]
[ext_resource path="res://gui/Victory.tscn" type="PackedScene" id=8]
[ext_resource path="res://gui/BasicDialog.tscn" type="PackedScene" id=9]
[node name="main" type="Node"]
[node name="BGM" type="AudioStreamPlayer" parent="."]
pause_mode = 2
stream = ExtResource( 1 )
autoplay = true
[node name="ParallaxBackground" type="ParallaxBackground" parent="."]
layer = -10
[node name="ParallaxLayer" type="ParallaxLayer" parent="ParallaxBackground"]
visible = false
z_index = -9
motion_scale = Vector2( 0.5, 0.5 )
motion_mirroring = Vector2( 1280, 1280 )
[node name="TextureRect" type="TextureRect" parent="ParallaxBackground/ParallaxLayer"]
margin_right = 1301.0
margin_bottom = 1297.0
texture = ExtResource( 2 )
stretch_mode = 2
[node name="Level1" parent="." instance=ExtResource( 3 )]
[node name="Player" parent="." instance=ExtResource( 4 )]
position = Vector2( 19.1735, 191.634 )
[node name="GUI" type="CanvasLayer" parent="."]
[node name="WealthBar" parent="GUI" instance=ExtResource( 5 )]
visible = false
[node name="MainMenu" parent="GUI" instance=ExtResource( 6 )]
visible = false
[node name="GameOver" parent="GUI" instance=ExtResource( 7 )]
visible = false
[node name="Victory" parent="GUI" instance=ExtResource( 8 )]
visible = false
margin_right = 120.0
margin_bottom = 97.0
[node name="BasicDialog" parent="GUI" instance=ExtResource( 9 )]
visible = false