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
58
59
60
|
[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(563, 338)
[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(239, 249)
[node name="Spiky2" parent="." instance=ExtResource("3_dfa23")]
position = Vector2(891, 258)
[node name="Spiky3" parent="." instance=ExtResource("3_dfa23")]
position = Vector2(284, 531)
[node name="Spiky4" parent="." instance=ExtResource("3_dfa23")]
position = Vector2(821, 530)
[node name="Spiky5" parent="." instance=ExtResource("3_dfa23")]
position = Vector2(570, 97)
[connection signal="body_entered" from="PlayerHeart" to="." method="_on_player_heart_body_entered"]
|