summaryrefslogtreecommitdiff
path: root/Target/balloon.tscn
diff options
context:
space:
mode:
Diffstat (limited to 'Target/balloon.tscn')
-rw-r--r--Target/balloon.tscn37
1 files changed, 37 insertions, 0 deletions
diff --git a/Target/balloon.tscn b/Target/balloon.tscn
new file mode 100644
index 0000000..f967a96
--- /dev/null
+++ b/Target/balloon.tscn
@@ -0,0 +1,37 @@
+[gd_scene load_steps=4 format=3 uid="uid://blifc11rkfkkv"]
+
+[ext_resource type="Script" path="res://Target/balloon.gd" id="1_e3new"]
+[ext_resource type="Texture2D" uid="uid://dv84uuaxgs8fc" path="res://Target/Assets/balloon.png" id="2_3oqak"]
+[ext_resource type="Shape2D" uid="uid://da5k00qhu13tl" path="res://Target/balloon_shape.tres" id="3_d2kvr"]
+
+[node name="Balloon" type="CharacterBody2D"]
+collision_layer = 0
+collision_mask = 8
+script = ExtResource("1_e3new")
+
+[node name="Sprite2D" type="Sprite2D" parent="."]
+texture_filter = 1
+texture = ExtResource("2_3oqak")
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
+shape = ExtResource("3_d2kvr")
+
+[node name="Area2D" type="Area2D" parent="."]
+collision_layer = 4
+collision_mask = 2
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
+shape = ExtResource("3_d2kvr")
+debug_color = Color(0.561074, 0.559604, 0, 0.42)
+
+[node name="VisibleOnScreenNotifier2D" type="VisibleOnScreenNotifier2D" parent="."]
+position = Vector2(4.76837e-07, 1.19209e-07)
+scale = Vector2(0.6, 0.7)
+
+[node name="Line2D" type="Line2D" parent="."]
+position = Vector2(0, -1)
+points = PackedVector2Array(0, 7, -1, 10, 2, 12, 0, 15)
+width = 1.0
+
+[connection signal="area_entered" from="Area2D" to="." method="_on_area_2d_area_entered"]
+[connection signal="screen_exited" from="VisibleOnScreenNotifier2D" to="." method="_on_visible_on_screen_notifier_2d_screen_exited"]