summaryrefslogtreecommitdiff
path: root/Stage/balloons.tscn
blob: 63cd919f3fc8f571437fa7a9179ec722e0cf54c9 (plain)
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
[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"]