who the fuck knows
This commit is contained in:
parent
1c33ea2f59
commit
1da411cacd
31 changed files with 1372 additions and 78 deletions
|
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=14 format=3 uid="uid://deek6uv574xas"]
|
||||
[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"]
|
||||
|
|
@ -8,23 +8,25 @@
|
|||
[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.5
|
||||
step = 0.25
|
||||
tracks/0/type = "value"
|
||||
tracks/0/imported = false
|
||||
tracks/0/enabled = true
|
||||
tracks/0/path = NodePath("Polygon2D:position")
|
||||
tracks/0/path = NodePath("BeeBody:position")
|
||||
tracks/0/interp = 1
|
||||
tracks/0/loop_wrap = true
|
||||
tracks/0/keys = {
|
||||
"times": PackedFloat32Array(0, 1.5, 2.5, 3.5, 5),
|
||||
"transitions": PackedFloat32Array(1, 1, 1, 1, 1),
|
||||
"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, -10), Vector2(0, 10), Vector2(0, 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"]
|
||||
|
|
@ -32,18 +34,6 @@ resource_name = "Idle"
|
|||
|
||||
[sub_resource type="Animation" id="Animation_0encb"]
|
||||
length = 0.001
|
||||
tracks/0/type = "value"
|
||||
tracks/0/imported = false
|
||||
tracks/0/enabled = true
|
||||
tracks/0/path = NodePath("Polygon2D:position")
|
||||
tracks/0/interp = 1
|
||||
tracks/0/loop_wrap = true
|
||||
tracks/0/keys = {
|
||||
"times": PackedFloat32Array(0),
|
||||
"transitions": PackedFloat32Array(1),
|
||||
"update": 0,
|
||||
"values": [Vector2(0, 0)]
|
||||
}
|
||||
|
||||
[sub_resource type="AnimationLibrary" id="AnimationLibrary_m27po"]
|
||||
_data = {
|
||||
|
|
@ -52,6 +42,29 @@ _data = {
|
|||
"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
|
||||
|
||||
|
|
@ -60,11 +73,16 @@ z_index = 99
|
|||
collision_mask = 0
|
||||
script = ExtResource("1_pnu7x")
|
||||
|
||||
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
|
||||
[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")
|
||||
|
|
@ -97,52 +115,21 @@ script = ExtResource("7_6qlbu")
|
|||
[node name="Returning" type="Node" parent="StateMachine"]
|
||||
script = ExtResource("8_dptvu")
|
||||
|
||||
[node name="Polygon2D" type="Polygon2D" parent="."]
|
||||
scale = Vector2(0.152885, 0.15978)
|
||||
color = Color(1, 1, 0.0745098, 1)
|
||||
polygon = PackedVector2Array(-18, -11, -6, -21, 17, -19, 23, 1, 3, 12, -18, 7)
|
||||
[node name="BeeBody" type="Sprite2D" parent="."]
|
||||
scale = Vector2(0.1, 0.1)
|
||||
texture = ExtResource("10_yi42o")
|
||||
|
||||
[node name="CPUParticles2D" type="CPUParticles2D" parent="Polygon2D"]
|
||||
position = Vector2(0, 2.46663)
|
||||
[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
|
||||
|
||||
[node name="Polygon2D" type="Polygon2D" parent="Polygon2D"]
|
||||
position = Vector2(-13.0817, -6.25862)
|
||||
scale = Vector2(0.5, 0.5)
|
||||
color = Color(0, 0, 0, 1)
|
||||
offset = Vector2(-9.53674e-07, -9.53674e-07)
|
||||
polygon = PackedVector2Array(32.7043, -12.5172, 39.2451, -18.7759, 45.786, -12.5172, 39.2451, -6.25862)
|
||||
|
||||
[node name="Polygon2D5" type="Polygon2D" parent="Polygon2D"]
|
||||
position = Vector2(-13.0817, 18.7759)
|
||||
scale = Vector2(0.5, 0.5)
|
||||
color = Color(0, 0, 0, 1)
|
||||
offset = Vector2(-9.53674e-07, -9.53674e-07)
|
||||
polygon = PackedVector2Array(32.7043, -12.5172, 39.2451, -18.7759, 45.786, -12.5172, 39.2451, -6.25862)
|
||||
|
||||
[node name="Polygon2D4" type="Polygon2D" parent="Polygon2D"]
|
||||
position = Vector2(-26.1634, 18.7759)
|
||||
scale = Vector2(0.5, 0.5)
|
||||
color = Color(0, 0, 0, 1)
|
||||
offset = Vector2(-9.53674e-07, -9.53674e-07)
|
||||
polygon = PackedVector2Array(32.7043, -12.5172, 39.2451, -18.7759, 45.786, -12.5172, 39.2451, -6.25862)
|
||||
|
||||
[node name="Polygon2D3" type="Polygon2D" parent="Polygon2D"]
|
||||
position = Vector2(-26.1634, -6.25862)
|
||||
scale = Vector2(0.5, 0.5)
|
||||
color = Color(0.30032, 0.200213, 0.0690995, 1)
|
||||
offset = Vector2(-9.53674e-07, -9.53674e-07)
|
||||
polygon = PackedVector2Array(32.7043, -12.5172, 39.2451, -18.7759, 78.4903, 12.5172, 65.4086, 25.0345)
|
||||
|
||||
[node name="Polygon2D2" type="Polygon2D" parent="Polygon2D"]
|
||||
position = Vector2(-6.54086, 0)
|
||||
scale = Vector2(0.5, 0.5)
|
||||
color = Color(0, 0, 0, 1)
|
||||
offset = Vector2(-9.53674e-07, -9.53674e-07)
|
||||
polygon = PackedVector2Array(32.7043, -12.5172, 39.2451, -18.7759, 45.786, -12.5172, 39.2451, -6.25862)
|
||||
|
||||
[connection signal="area_entered" from="HitBox" to="HitBox" method="_on_area_entered"]
|
||||
[connection signal="area_exited" from="HitBox" to="HitBox" method="_on_area_exited"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue