-
Notifications
You must be signed in to change notification settings - Fork 1
/
world.tscn
74 lines (61 loc) · 2.58 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
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
[gd_scene load_steps=14 format=3 uid="uid://ejeomhyl0shd"]
[ext_resource type="Script" path="res://EnemySpawner.gd" id="1_4p22n"]
[ext_resource type="Texture2D" uid="uid://c3mchruglalbw" path="res://bg_1_1.png" id="2_76hru"]
[ext_resource type="PackedScene" uid="uid://b737n7e1xqmfn" path="res://Player/player.tscn" id="2_u6sdl"]
[ext_resource type="PackedScene" uid="uid://ubi1v5pgqiw0" path="res://Enemy/enemy_circle.tscn" id="3_tiko3"]
[ext_resource type="PackedScene" uid="uid://bsbxf1h4vge4b" path="res://Enemy/enemy_triangle.tscn" id="4_8l771"]
[ext_resource type="PackedScene" path="res://enemy_spawner.tscn" id="4_xya2k"]
[ext_resource type="Script" path="res://spawn_info.gd" id="6_5u46s"]
[ext_resource type="AudioStream" uid="uid://btrgoa3135y8f" path="res://Assets/Music/OutThere.ogg" id="8_ie10r"]
[ext_resource type="PackedScene" uid="uid://b72s7nxurfs1m" path="res://Stopwatch/stopwatch.tscn" id="9_vid2e"]
[sub_resource type="CircleShape2D" id="CircleShape2D_ignsy"]
[sub_resource type="Resource" id="Resource_ww7a7"]
script = ExtResource("6_5u46s")
time_start = 0
time_end = 5
enemy = ExtResource("3_tiko3")
enemy_num = 1
enemy_spawn_delay = 1
[sub_resource type="Resource" id="Resource_ble0q"]
script = ExtResource("6_5u46s")
time_start = 10
time_end = 60
enemy = ExtResource("4_8l771")
enemy_num = 2
enemy_spawn_delay = 1
[sub_resource type="Resource" id="Resource_amrm8"]
script = ExtResource("6_5u46s")
time_start = 10
time_end = 60
enemy = ExtResource("3_tiko3")
enemy_num = 1
enemy_spawn_delay = 1
[node name="World" type="Node2D"]
script = ExtResource("1_4p22n")
[node name="Background" type="Sprite2D" parent="."]
texture_filter = 2
texture_repeat = 2
texture = ExtResource("2_76hru")
region_enabled = true
region_rect = Rect2(-4000, 4000, 4000, 4000)
[node name="Player" parent="." instance=ExtResource("2_u6sdl")]
[node name="CollisionShape2D" parent="Player" index="3"]
visible = false
shape = SubResource("CircleShape2D_ignsy")
[node name="Stopwatch" parent="Player" groups=["stopwatch"] instance=ExtResource("9_vid2e")]
anchors_preset = 5
anchor_left = 0.5
anchor_right = 0.5
offset_left = -24.6667
offset_top = -118.0
offset_right = 26.3333
offset_bottom = -95.0
grow_horizontal = 2
[node name="EnemySpawner" parent="." instance=ExtResource("4_xya2k")]
spawns = Array[ExtResource("6_5u46s")]([SubResource("Resource_ww7a7"), SubResource("Resource_ble0q"), SubResource("Resource_amrm8")])
[node name="AudioStreamPlayer2D" type="AudioStreamPlayer2D" parent="."]
stream = ExtResource("8_ie10r")
autoplay = true
[editable path="Player"]
[editable path="Player/Hurtbox"]
[editable path="EnemySpawner"]