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

43 lines
1.6 KiB
Text
Raw Normal View History

2024-04-28 09:05:12 +00:00
[gd_scene load_steps=6 format=3 uid="uid://ddpo03rb6068c"]
2024-04-27 18:12:03 +00:00
[ext_resource type="Script" path="res://entities/sacrifice_stone.gd" id="1_sgl1t"]
[ext_resource type="PackedScene" uid="uid://dfdr3e32lohq" path="res://behaviours/edible.tscn" id="1_y58y4"]
[ext_resource type="PackedScene" uid="uid://c5pyp5hvthdof" path="res://behaviours/tracker_tracker.tscn" id="2_6m7pn"]
[ext_resource type="Texture2D" uid="uid://d3pn6wuykchoa" path="res://entities/sacrifice_stone.png" id="2_rbklw"]
[sub_resource type="CircleShape2D" id="CircleShape2D_yv6hf"]
radius = 4.0
2024-04-27 18:12:03 +00:00
[node name="SacrificeStone" type="Node2D"]
script = ExtResource("1_sgl1t")
2024-04-28 15:12:41 +00:00
[node name="Sprite" type="Sprite2D" parent="."]
2024-04-28 17:21:22 +00:00
z_index = 5
2024-04-28 15:12:41 +00:00
position = Vector2(0, 32)
scale = Vector2(2, 2)
texture = ExtResource("2_rbklw")
2024-04-27 18:12:03 +00:00
[node name="StoneArea" type="Area2D" parent="."]
collision_layer = 8
collision_mask = 24
monitoring = false
2024-04-27 18:12:03 +00:00
[node name="Shape" type="CollisionShape2D" parent="StoneArea"]
shape = SubResource("CircleShape2D_yv6hf")
one_way_collision_margin = 27.5
debug_color = Color(1, 0, 0, 0.419608)
2024-04-27 18:12:03 +00:00
[node name="Edible" parent="StoneArea" instance=ExtResource("1_y58y4")]
diet = &"Trap"
2024-04-27 18:12:03 +00:00
[node name="SacrificeTracker" parent="StoneArea" instance=ExtResource("2_6m7pn")]
collision_mask = 56
2024-04-27 18:12:03 +00:00
[node name="Shape" type="CollisionShape2D" parent="StoneArea/SacrificeTracker"]
shape = SubResource("CircleShape2D_yv6hf")
one_way_collision_margin = 27.5
debug_color = Color(1, 0, 0, 0)
2024-04-27 18:12:03 +00:00
[connection signal="tracked" from="StoneArea/SacrificeTracker" to="." method="_on_tracked"]
[connection signal="untracked" from="StoneArea/SacrificeTracker" to="." method="_on_untracked"]