-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWorld.tscn
31 lines (25 loc) · 983 Bytes
/
World.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
[gd_scene load_steps=6 format=2]
[ext_resource path="res://Scenes/EnemySpawner.tscn" type="PackedScene" id=1]
[ext_resource path="res://Scenes/Player.tscn" type="PackedScene" id=2]
[ext_resource path="res://Scenes/GUI/ScoreSystem.tscn" type="PackedScene" id=3]
[ext_resource path="res://Scripts/game_controller_script.gd" type="Script" id=5]
[ext_resource path="res://Scenes/GUI/GameOver.tscn" type="PackedScene" id=6]
[node name="World" type="Node2D"]
script = ExtResource( 5 )
[node name="Player" parent="." instance=ExtResource( 2 )]
position = Vector2( 671, 356 )
z_index = -1
[node name="EnemySpawner" parent="." instance=ExtResource( 1 )]
[node name="ScoreSystem" parent="." instance=ExtResource( 3 )]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_bottom = 0.0
[node name="GameOver" parent="." instance=ExtResource( 6 )]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = 0.422
margin_right = 0.422