-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWorld.tscn
41 lines (29 loc) · 1.22 KB
/
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
32
33
34
35
36
37
38
39
40
41
[gd_scene load_steps=4 format=2]
[ext_resource path="res://World.gd" type="Script" id=1]
[ext_resource path="res://Enemy.tscn" type="PackedScene" id=2]
[ext_resource path="res://icon.png" type="Texture" id=3]
[node name="World" type="Node2D"]
script = ExtResource( 1 )
[node name="Background" type="Sprite" parent="."]
modulate = Color( 0.0392157, 0.27451, 0.168627, 1 )
position = Vector2( 634.5, 380.5 )
scale = Vector2( 20.8281, 12.8906 )
z_index = -1
texture = ExtResource( 3 )
[node name="Enemy" parent="." instance=ExtResource( 2 )]
position = Vector2( 929, 73 )
[node name="Enemy2" parent="." instance=ExtResource( 2 )]
position = Vector2( 881, 498 )
[node name="Spawning_nodes" type="Node" parent="."]
[node name="1" type="Position2D" parent="Spawning_nodes"]
position = Vector2( 167, 68 )
[node name="2" type="Position2D" parent="Spawning_nodes"]
position = Vector2( 340, 124 )
[node name="3" type="Position2D" parent="Spawning_nodes"]
position = Vector2( 498, 229 )
[node name="4" type="Position2D" parent="Spawning_nodes"]
position = Vector2( 561, 87 )
[node name="5" type="Position2D" parent="Spawning_nodes"]
position = Vector2( 326, 345 )
[node name="6" type="Position2D" parent="Spawning_nodes"]
position = Vector2( 180, 259 )