|
@@ -1,20 +1,18 @@
|
|
|
[gd_scene load_steps=11 format=2]
|
|
|
|
|
|
-[ext_resource path="res://component/entity/enemy/Enemy.gd" type="Script" id=1]
|
|
|
-[ext_resource path="res://component/entity/enemy/enemySwimming_1.png" type="Texture" id=2]
|
|
|
-[ext_resource path="res://component/entity/enemy/enemySwimming_2.png" type="Texture" id=3]
|
|
|
-[ext_resource path="res://component/entity/enemy/enemyFlyingAlt_1.png" type="Texture" id=4]
|
|
|
-[ext_resource path="res://component/entity/enemy/enemyFlyingAlt_2.png" type="Texture" id=5]
|
|
|
-[ext_resource path="res://component/entity/enemy/enemyWalking_1.png" type="Texture" id=6]
|
|
|
-[ext_resource path="res://component/entity/enemy/enemyWalking_2.png" type="Texture" id=7]
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-[sub_resource type="PhysicsMaterial" id=3]
|
|
|
+[ext_resource path="res://component/entity/octo/Octo.gd" type="Script" id=1]
|
|
|
+[ext_resource path="res://component/entity/octo/enemySwimming_1.png" type="Texture" id=2]
|
|
|
+[ext_resource path="res://component/entity/octo/enemySwimming_2.png" type="Texture" id=3]
|
|
|
+[ext_resource path="res://component/entity/octo/enemyFlyingAlt_1.png" type="Texture" id=4]
|
|
|
+[ext_resource path="res://component/entity/octo/enemyFlyingAlt_2.png" type="Texture" id=5]
|
|
|
+[ext_resource path="res://component/entity/octo/enemyWalking_1.png" type="Texture" id=6]
|
|
|
+[ext_resource path="res://component/entity/octo/enemyWalking_2.png" type="Texture" id=7]
|
|
|
+
|
|
|
+[sub_resource type="PhysicsMaterial" id=1]
|
|
|
friction = 0.1
|
|
|
bounce = 1.0
|
|
|
|
|
|
-[sub_resource type="SpriteFrames" id=1]
|
|
|
+[sub_resource type="SpriteFrames" id=2]
|
|
|
animations = [ {
|
|
|
"frames": [ ExtResource( 2 ), ExtResource( 3 ) ],
|
|
|
"loop": true,
|
|
@@ -32,12 +30,12 @@ animations = [ {
|
|
|
"speed": 5.0
|
|
|
} ]
|
|
|
|
|
|
-[sub_resource type="CapsuleShape2D" id=2]
|
|
|
+[sub_resource type="CapsuleShape2D" id=3]
|
|
|
radius = 24.0469
|
|
|
height = 52.8654
|
|
|
|
|
|
[node name="Enemy" type="RigidBody2D"]
|
|
|
-physics_material_override = SubResource( 3 )
|
|
|
+physics_material_override = SubResource( 1 )
|
|
|
gravity_scale = 0.0
|
|
|
script = ExtResource( 1 )
|
|
|
__meta__ = {
|
|
@@ -46,12 +44,12 @@ __meta__ = {
|
|
|
|
|
|
[node name="AnimatedSprite" type="AnimatedSprite" parent="."]
|
|
|
scale = Vector2( 0.75, 0.75 )
|
|
|
-frames = SubResource( 1 )
|
|
|
+frames = SubResource( 2 )
|
|
|
animation = "walk"
|
|
|
|
|
|
[node name="HitBox" type="CollisionShape2D" parent="."]
|
|
|
rotation = 1.5708
|
|
|
-shape = SubResource( 2 )
|
|
|
+shape = SubResource( 3 )
|
|
|
|
|
|
[node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
|
|
|
[connection signal="screen_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_screen_exited"]
|