1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-22 08:04:23 +00:00
hella-farm/entities/skull.tscn

43 lines
1.7 KiB
Text

[gd_scene load_steps=7 format=3 uid="uid://b3gydtrenbw3n"]
[ext_resource type="Script" path="res://entities/skull.gd" id="1_7g8bu"]
[ext_resource type="Texture2D" uid="uid://dwvvwjdexdywh" path="res://entities/skull.png" id="1_v6qk3"]
[ext_resource type="PackedScene" uid="uid://dijcjahkddudv" path="res://behaviours/draggable.tscn" id="2_h0icd"]
[ext_resource type="PackedScene" uid="uid://rx24bppccih7" path="res://behaviours/move_physics.tscn" id="3_83m1a"]
[sub_resource type="CircleShape2D" id="CircleShape2D_ypibs"]
radius = 12.0
[sub_resource type="CircleShape2D" id="CircleShape2D_1c7gd"]
radius = 24.0
[node name="Skull" type="CharacterBody2D"]
collision_layer = 32
collision_mask = 38
script = ExtResource("1_7g8bu")
[node name="Sprite" type="Sprite2D" parent="."]
scale = Vector2(2, 2)
texture = ExtResource("1_v6qk3")
[node name="Shape" type="CollisionShape2D" parent="."]
shape = SubResource("CircleShape2D_ypibs")
[node name="MovementDrag" parent="." instance=ExtResource("3_83m1a")]
[node name="Draggable" parent="MovementDrag" instance=ExtResource("2_h0icd")]
collision_layer = 32
[node name="Shape" type="CollisionShape2D" parent="MovementDrag/Draggable"]
shape = SubResource("CircleShape2D_1c7gd")
debug_color = Color(1, 1, 1, 0)
[node name="FallTimer" type="Timer" parent="MovementDrag"]
wait_time = 0.5
one_shot = true
[connection signal="dropped" from="MovementDrag" to="MovementDrag/FallTimer" method="start"]
[connection signal="move" from="MovementDrag" to="." method="_on_move"]
[connection signal="dragged" from="MovementDrag/Draggable" to="MovementDrag" method="drag"]
[connection signal="dropped" from="MovementDrag/Draggable" to="MovementDrag" method="drop"]
[connection signal="timeout" from="MovementDrag/FallTimer" to="MovementDrag" method="fall"]