summaryrefslogtreecommitdiff
path: root/game/microgames/heart_break/heart_break.tscn
blob: 2db797b4625f80a56ce6dae6fe3da50d78bf5590 (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
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
[gd_scene load_steps=6 format=3 uid="uid://b18b72hhe1lbo"]

[ext_resource type="Script" path="res://game/microgames/heart_break/heart_break.gd" id="1_ia77r"]
[ext_resource type="PackedScene" uid="uid://ce7600yfkpdbq" path="res://game/microgames/heart_break/player_heart.tscn" id="2_uwtaj"]
[ext_resource type="PackedScene" uid="uid://shdrrjh51igy" path="res://game/microgames/heart_break/spiky.tscn" id="3_dfa23"]

[sub_resource type="RectangleShape2D" id="RectangleShape2D_upktn"]
size = Vector2(1168, 20)

[sub_resource type="RectangleShape2D" id="RectangleShape2D_y3mqx"]
size = Vector2(20, 676)

[node name="HeartBreak" type="Node"]
script = ExtResource("1_ia77r")

[node name="PlayerHeart" parent="." instance=ExtResource("2_uwtaj")]
position = Vector2(553, 317)

[node name="Upper Boundary" type="StaticBody2D" parent="."]

[node name="CollisionShape2D" type="CollisionShape2D" parent="Upper Boundary"]
position = Vector2(574, 0)
shape = SubResource("RectangleShape2D_upktn")

[node name="Left Boundary" type="StaticBody2D" parent="."]

[node name="CollisionShape2D" type="CollisionShape2D" parent="Left Boundary"]
position = Vector2(0, 328)
shape = SubResource("RectangleShape2D_y3mqx")

[node name="Left Boundary2" type="StaticBody2D" parent="."]
position = Vector2(1161, 0)

[node name="CollisionShape2D" type="CollisionShape2D" parent="Left Boundary2"]
position = Vector2(0, 328)
shape = SubResource("RectangleShape2D_y3mqx")

[node name="Lower Boundary" type="StaticBody2D" parent="."]
position = Vector2(0, 656)

[node name="CollisionShape2D" type="CollisionShape2D" parent="Lower Boundary"]
position = Vector2(574, 0)
shape = SubResource("RectangleShape2D_upktn")

[node name="Spiky" parent="." instance=ExtResource("3_dfa23")]
position = Vector2(317, 125)

[node name="Spiky2" parent="." instance=ExtResource("3_dfa23")]
position = Vector2(902, 183)

[node name="Spiky3" parent="." instance=ExtResource("3_dfa23")]
position = Vector2(262, 479)

[node name="Spiky4" parent="." instance=ExtResource("3_dfa23")]
position = Vector2(828, 491)

[connection signal="body_entered" from="PlayerHeart" to="." method="_on_player_heart_body_entered"]