135 lines
4.6 KiB
Text
135 lines
4.6 KiB
Text
[gd_scene load_steps=18 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"]
|
|
[ext_resource type="Script" path="res://entities/bee/states/bee_sleeping.gd" id="7_6qlbu"]
|
|
[ext_resource type="Script" path="res://entities/bee/states/bee_returning.gd" id="8_dptvu"]
|
|
[ext_resource type="Texture2D" uid="uid://ch3qalaaky8ng" path="res://resources/textures/bee_body.png" id="10_yi42o"]
|
|
[ext_resource type="Texture2D" uid="uid://bsskcrayofs8n" path="res://resources/textures/bee_wings.png" id="11_utbwk"]
|
|
|
|
[sub_resource type="Animation" id="Animation_iys4n"]
|
|
resource_name = "Flying"
|
|
length = 5.0
|
|
loop_mode = 1
|
|
step = 0.25
|
|
tracks/0/type = "value"
|
|
tracks/0/imported = false
|
|
tracks/0/enabled = true
|
|
tracks/0/path = NodePath("BeeBody:position")
|
|
tracks/0/interp = 1
|
|
tracks/0/loop_wrap = true
|
|
tracks/0/keys = {
|
|
"times": PackedFloat32Array(0, 1, 2, 3, 4, 5),
|
|
"transitions": PackedFloat32Array(-2, -2, -2, -2, -2, -2),
|
|
"update": 0,
|
|
"values": [Vector2(0, 0), Vector2(0, 10), Vector2(0, 5), Vector2(0, -5), Vector2(0, 10), Vector2(0, 0)]
|
|
}
|
|
|
|
[sub_resource type="Animation" id="Animation_t75ra"]
|
|
resource_name = "Idle"
|
|
|
|
[sub_resource type="Animation" id="Animation_0encb"]
|
|
length = 0.001
|
|
|
|
[sub_resource type="AnimationLibrary" id="AnimationLibrary_m27po"]
|
|
_data = {
|
|
"Flying": SubResource("Animation_iys4n"),
|
|
"Idle": SubResource("Animation_t75ra"),
|
|
"RESET": SubResource("Animation_0encb")
|
|
}
|
|
|
|
[sub_resource type="Animation" id="Animation_muxdj"]
|
|
resource_name = "Fly"
|
|
length = 0.5
|
|
loop_mode = 1
|
|
step = 0.05
|
|
tracks/0/type = "value"
|
|
tracks/0/imported = false
|
|
tracks/0/enabled = true
|
|
tracks/0/path = NodePath("BeeBody/BeeWings:scale")
|
|
tracks/0/interp = 1
|
|
tracks/0/loop_wrap = false
|
|
tracks/0/keys = {
|
|
"times": PackedFloat32Array(0, 0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45),
|
|
"transitions": PackedFloat32Array(-2, -2, -2, -2, -2, -2, -2, -2, -2, -2),
|
|
"update": 0,
|
|
"values": [Vector2(1, 1), Vector2(1, 0.1), Vector2(1, 1), Vector2(1, 0.1), Vector2(1, 1), Vector2(1, 0.1), Vector2(1, 1), Vector2(1, 0.1), Vector2(1, 1), Vector2(1, 0.1)]
|
|
}
|
|
|
|
[sub_resource type="AnimationLibrary" id="AnimationLibrary_yvewf"]
|
|
_data = {
|
|
"Fly": SubResource("Animation_muxdj")
|
|
}
|
|
|
|
[sub_resource type="CircleShape2D" id="CircleShape2D_86nxf"]
|
|
radius = 22.0907
|
|
|
|
[node name="Bee" type="CharacterBody2D" groups=["bee"]]
|
|
z_index = 99
|
|
collision_mask = 0
|
|
script = ExtResource("1_pnu7x")
|
|
|
|
[node name="BeePositionAnimation" type="AnimationPlayer" parent="."]
|
|
libraries = {
|
|
"": SubResource("AnimationLibrary_m27po")
|
|
}
|
|
|
|
[node name="WingAnimation" type="AnimationPlayer" parent="."]
|
|
libraries = {
|
|
"": SubResource("AnimationLibrary_yvewf")
|
|
}
|
|
|
|
[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="Sleeping" type="Node" parent="StateMachine"]
|
|
script = ExtResource("7_6qlbu")
|
|
|
|
[node name="Returning" type="Node" parent="StateMachine"]
|
|
script = ExtResource("8_dptvu")
|
|
|
|
[node name="BeeBody" type="Sprite2D" parent="."]
|
|
scale = Vector2(0.1, 0.1)
|
|
texture = ExtResource("10_yi42o")
|
|
|
|
[node name="BeeWings" type="Sprite2D" parent="BeeBody"]
|
|
scale = Vector2(1, 0.1)
|
|
texture = ExtResource("11_utbwk")
|
|
|
|
[node name="CPUParticles2D" type="CPUParticles2D" parent="BeeBody"]
|
|
position = Vector2(0, 3.94118)
|
|
scale = Vector2(1.52885, 1.5978)
|
|
lifetime_randomness = 0.33
|
|
gravity = Vector2(0, 0)
|
|
linear_accel_min = 5.0
|
|
linear_accel_max = 10.0
|
|
|
|
[connection signal="area_entered" from="HitBox" to="HitBox" method="_on_area_entered"]
|
|
[connection signal="area_exited" from="HitBox" to="HitBox" method="_on_area_exited"]
|