pollen-not-included/entities/Bee.tscn
2024-05-03 15:45:40 +01:00

48 lines
1.9 KiB
Text

[gd_scene load_steps=8 format=3 uid="uid://deek6uv574xas"]
[ext_resource type="Script" path="res://entities/scripts/bee.gd" id="1_pnu7x"]
[ext_resource type="Script" path="res://entities/scripts/finite_state_machine.gd" id="1_t3s5d"]
[ext_resource type="Script" path="res://entities/bee/states/bee_idle.gd" id="3_vasc5"]
[ext_resource type="Script" path="res://entities/bee/states/bee_gather.gd" id="5_4vs4l"]
[ext_resource type="Script" path="res://entities/scripts/bee_hit_box.gd" id="5_agq38"]
[ext_resource type="Script" path="res://entities/bee/states/bee_travelling.gd" id="5_qtx0r"]
[sub_resource type="CircleShape2D" id="CircleShape2D_86nxf"]
radius = 22.0907
[node name="Bee" type="CharacterBody2D"]
collision_mask = 0
script = ExtResource("1_pnu7x")
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
light_mask = 0
shape = SubResource("CircleShape2D_86nxf")
[node name="HitBox" type="Area2D" parent="."]
collision_layer = 6
collision_mask = 7
script = ExtResource("5_agq38")
[node name="CollisionShape2D" type="CollisionShape2D" parent="HitBox"]
light_mask = 0
shape = SubResource("CircleShape2D_86nxf")
[node name="StateMachine" type="Node2D" parent="." node_paths=PackedStringArray("initial_state")]
script = ExtResource("1_t3s5d")
initial_state = NodePath("Idle")
[node name="Idle" type="Node" parent="StateMachine"]
script = ExtResource("3_vasc5")
[node name="Travelling" type="Node" parent="StateMachine"]
script = ExtResource("5_qtx0r")
[node name="Gathering" type="Node" parent="StateMachine"]
script = ExtResource("5_4vs4l")
[node name="Polygon2D" type="Polygon2D" parent="."]
color = Color(1, 1, 0.0745098, 1)
polygon = PackedVector2Array(-18, -11, -6, -21, 17, -19, 23, 1, 3, 12, -18, 7)
[connection signal="area_entered" from="HitBox" to="HitBox" method="_on_area_entered"]
[connection signal="area_exited" from="HitBox" to="HitBox" method="_on_area_exited"]