From 62e90b444315245ef24606fa51d3fccba5f18e08 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Sat, 28 Sep 2024 15:29:16 +0200 Subject: initial commit --- Stage/balloons.tscn | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Stage/balloons.tscn (limited to 'Stage/balloons.tscn') 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"] -- cgit v1.2.3