summaryrefslogtreecommitdiff
path: root/Stage/balloons.tscn
diff options
context:
space:
mode:
Diffstat (limited to 'Stage/balloons.tscn')
-rw-r--r--Stage/balloons.tscn32
1 files changed, 32 insertions, 0 deletions
diff --git a/Stage/balloons.tscn b/Stage/balloons.tscn
new file mode 100644
index 0000000..63cd919
--- /dev/null
+++ b/Stage/balloons.tscn
@@ -0,0 +1,32 @@
+[gd_scene load_steps=5 format=3 uid="uid://ddthntf36xojy"]
+
+[ext_resource type="Script" path="res://Stage/balloons.gd" id="1_fuioi"]
+[ext_resource type="PackedScene" uid="uid://cuemoig58el4f" path="res://UI/hud.tscn" id="2_tsbp8"]
+[ext_resource type="Texture2D" uid="uid://cyw52lkxbbnbb" path="res://UI/Assets/background.jpg" id="3_sh8m8"]
+[ext_resource type="PackedScene" uid="uid://bn0h50n6fr6n1" path="res://Player/bow.tscn" id="4_0t5n3"]
+
+[node name="Balloons" type="Node2D"]
+script = ExtResource("1_fuioi")
+
+[node name="HUD" parent="." instance=ExtResource("2_tsbp8")]
+
+[node name="Background" type="CanvasLayer" parent="."]
+layer = -1
+
+[node name="TextureRect" type="TextureRect" parent="Background"]
+anchors_preset = 15
+anchor_right = 1.0
+anchor_bottom = 1.0
+grow_horizontal = 2
+grow_vertical = 2
+texture = ExtResource("3_sh8m8")
+expand_mode = 1
+
+[node name="Bow" parent="." instance=ExtResource("4_0t5n3")]
+position = Vector2(104, 152)
+
+[node name="SpawnTimer" type="Timer" parent="."]
+wait_time = 0.5
+autostart = true
+
+[connection signal="timeout" from="SpawnTimer" to="." method="_on_spawn_timer_timeout"]