A lot of crazy stuff happened here.....
1
src/boss/state/states/BossLogic.State.Activated.cs.uid
Normal file
@@ -0,0 +1 @@
|
|||||||
|
uid://dk60nmw42pm82
|
||||||
1
src/boss/state/states/BossLogic.State.Attacking.cs.uid
Normal file
@@ -0,0 +1 @@
|
|||||||
|
uid://crsw8t5nr4ots
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
uid://0uou7c2gl6jr
|
||||||
1
src/boss/state/states/BossLogic.State.Unactivated.cs.uid
Normal file
@@ -0,0 +1 @@
|
|||||||
|
uid://hns6fpqiyru2
|
||||||
@@ -30,6 +30,8 @@ public partial class Enemy : RigidBody3D, IEnemy, IProvide<IEnemyLogic>
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Node Dependencies
|
#region Node Dependencies
|
||||||
|
[Node] private CollisionShape3D CollisionShape { get; set; } = default!;
|
||||||
|
|
||||||
[Node] private NavigationAgent3D NavAgent { get; set; } = default!;
|
[Node] private NavigationAgent3D NavAgent { get; set; } = default!;
|
||||||
|
|
||||||
[Node] private Area3D LineOfSight { get; set; } = default!;
|
[Node] private Area3D LineOfSight { get; set; } = default!;
|
||||||
@@ -109,6 +111,7 @@ public partial class Enemy : RigidBody3D, IEnemy, IProvide<IEnemyLogic>
|
|||||||
public void Die()
|
public void Die()
|
||||||
{
|
{
|
||||||
_enemyLogic.Input(new EnemyLogic.Input.EnemyDefeated());
|
_enemyLogic.Input(new EnemyLogic.Input.EnemyDefeated());
|
||||||
|
CollisionShape.SetDeferred("disabled", true);
|
||||||
EnemyModelView.PlayDeathAnimation();
|
EnemyModelView.PlayDeathAnimation();
|
||||||
var tweener = GetTree().CreateTween();
|
var tweener = GetTree().CreateTween();
|
||||||
tweener.TweenInterval(1.0f);
|
tweener.TweenInterval(1.0f);
|
||||||
|
|||||||
@@ -24,11 +24,11 @@ public partial class Sproingy : Enemy, IHasPrimaryAttack
|
|||||||
{
|
{
|
||||||
_enemyLogic.Input(new EnemyLogic.Input.PhysicsTick(delta));
|
_enemyLogic.Input(new EnemyLogic.Input.PhysicsTick(delta));
|
||||||
|
|
||||||
if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) < 2.5f)
|
if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) < 5f)
|
||||||
_enemyLogic.Input(new EnemyLogic.Input.StartAttacking());
|
_enemyLogic.Input(new EnemyLogic.Input.StartAttacking());
|
||||||
if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) > 45f)
|
if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) > 45f)
|
||||||
_enemyLogic.Input(new EnemyLogic.Input.LostPlayer());
|
_enemyLogic.Input(new EnemyLogic.Input.LostPlayer());
|
||||||
if (_enemyLogic.Value is EnemyLogic.State.Attacking && GlobalPosition.DistanceTo(Player.CurrentPosition) > 2.5f)
|
if (_enemyLogic.Value is EnemyLogic.State.Attacking && GlobalPosition.DistanceTo(Player.CurrentPosition) > 5f)
|
||||||
_enemyLogic.Input(new EnemyLogic.Input.Alerted());
|
_enemyLogic.Input(new EnemyLogic.Input.Alerted());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
uid://jjulhqd5g3be
|
uid://jjulhqd5g3bd
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
[gd_scene load_steps=8 format=3 uid="uid://bksq62muhk3h5"]
|
[gd_scene load_steps=8 format=3 uid="uid://bksq62muhk3h5"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.cs" id="1_ldo22"]
|
[ext_resource type="Script" uid="uid://jjulhqd5g3bd" path="res://src/enemy/enemy_types/1. sproingy/Sproingy.cs" id="1_xsluo"]
|
||||||
[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_8vcnq"]
|
[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_oln85"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bli0t0d6ommvi" path="res://src/enemy/enemy_types/1. sproingy/SproingyModelView.tscn" id="4_o3b7p"]
|
[ext_resource type="PackedScene" uid="uid://bli0t0d6ommvi" path="res://src/enemy/enemy_types/1. sproingy/SproingyModelView.tscn" id="4_o3b7p"]
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_o3b7p"]
|
[sub_resource type="Resource" id="Resource_oln85"]
|
||||||
script = ExtResource("2_8vcnq")
|
script = ExtResource("2_oln85")
|
||||||
CurrentHP = 50.0
|
CurrentHP = 30.0
|
||||||
MaximumHP = 50.0
|
MaximumHP = 30.0
|
||||||
CurrentAttack = 20
|
CurrentAttack = 12
|
||||||
CurrentDefense = 5
|
CurrentDefense = 7
|
||||||
MaxAttack = 20
|
MaxAttack = 12
|
||||||
MaxDefense = 5
|
MaxDefense = 7
|
||||||
ExpFromDefeat = 15
|
ExpFromDefeat = 15
|
||||||
Luck = 0.05
|
Luck = 0.05
|
||||||
TelluricResistance = 0.0
|
TelluricResistance = 0.0
|
||||||
@@ -20,10 +20,10 @@ HydricResistance = 0.0
|
|||||||
IgneousResistance = 0.0
|
IgneousResistance = 0.0
|
||||||
FerrumResistance = 0.0
|
FerrumResistance = 0.0
|
||||||
DropsSoulGemChance = 0.75
|
DropsSoulGemChance = 0.75
|
||||||
metadata/_custom_type_script = ExtResource("2_8vcnq")
|
metadata/_custom_type_script = ExtResource("2_oln85")
|
||||||
|
|
||||||
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"]
|
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"]
|
||||||
radius = 0.226425
|
radius = 0.62699
|
||||||
height = 2.02807
|
height = 2.02807
|
||||||
|
|
||||||
[sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"]
|
[sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"]
|
||||||
@@ -42,10 +42,11 @@ axis_lock_linear_y = true
|
|||||||
axis_lock_angular_x = true
|
axis_lock_angular_x = true
|
||||||
contact_monitor = true
|
contact_monitor = true
|
||||||
max_contacts_reported = 1
|
max_contacts_reported = 1
|
||||||
script = ExtResource("1_ldo22")
|
script = ExtResource("1_xsluo")
|
||||||
_enemyStatResource = SubResource("Resource_o3b7p")
|
_enemyStatResource = SubResource("Resource_oln85")
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
[node name="CollisionShape" type="CollisionShape3D" parent="."]
|
||||||
|
unique_name_in_owner = true
|
||||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
||||||
shape = SubResource("CapsuleShape3D_cwfph")
|
shape = SubResource("CapsuleShape3D_cwfph")
|
||||||
|
|
||||||
|
|||||||
@@ -60,7 +60,7 @@
|
|||||||
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="57_lae8t"]
|
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="57_lae8t"]
|
||||||
|
|
||||||
[sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"]
|
[sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"]
|
||||||
viewport_path = NodePath("Sprite3D/SubViewport")
|
viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport")
|
||||||
|
|
||||||
[sub_resource type="SpriteFrames" id="SpriteFrames_6drt6"]
|
[sub_resource type="SpriteFrames" id="SpriteFrames_6drt6"]
|
||||||
resource_local_to_scene = true
|
resource_local_to_scene = true
|
||||||
@@ -259,7 +259,7 @@ length = 0.001
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -271,7 +271,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -301,7 +301,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -313,7 +313,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -331,7 +331,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -343,7 +343,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -361,7 +361,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -373,7 +373,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -391,7 +391,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -403,7 +403,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -421,7 +421,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -433,7 +433,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -451,7 +451,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -463,7 +463,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -480,7 +480,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -492,7 +492,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -696,14 +696,19 @@ texture_filter = 0
|
|||||||
render_priority = 100
|
render_priority = 100
|
||||||
texture = SubResource("ViewportTexture_h1kaf")
|
texture = SubResource("ViewportTexture_h1kaf")
|
||||||
|
|
||||||
[node name="SubViewport" type="SubViewport" parent="Sprite3D"]
|
[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"]
|
||||||
|
visibility_layer = 0
|
||||||
|
offset_right = 40.0
|
||||||
|
offset_bottom = 40.0
|
||||||
|
|
||||||
|
[node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"]
|
||||||
disable_3d = true
|
disable_3d = true
|
||||||
transparent_bg = true
|
transparent_bg = true
|
||||||
handle_input_locally = false
|
handle_input_locally = false
|
||||||
size = Vector2i(200, 200)
|
size = Vector2i(200, 200)
|
||||||
render_target_update_mode = 4
|
render_target_update_mode = 4
|
||||||
|
|
||||||
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewport"]
|
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
texture_filter = 1
|
texture_filter = 1
|
||||||
position = Vector2(100, 100)
|
position = Vector2(100, 100)
|
||||||
|
|||||||
@@ -1,92 +0,0 @@
|
|||||||
[gd_scene load_steps=8 format=3 uid="uid://bkj1kyqu7reul"]
|
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.cs" id="1_bh4x8"]
|
|
||||||
[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_vuobh"]
|
|
||||||
[ext_resource type="PackedScene" uid="uid://cwlgxsk6iojrd" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingyModelView.tscn" id="3_o1o4d"]
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_o3b7p"]
|
|
||||||
script = ExtResource("2_vuobh")
|
|
||||||
CurrentHP = 50.0
|
|
||||||
MaximumHP = 50.0
|
|
||||||
CurrentAttack = 20
|
|
||||||
CurrentDefense = 5
|
|
||||||
MaxAttack = 20
|
|
||||||
MaxDefense = 5
|
|
||||||
ExpFromDefeat = 15
|
|
||||||
Luck = 0.05
|
|
||||||
TelluricResistance = 0.0
|
|
||||||
AeolicResistance = 0.0
|
|
||||||
HydricResistance = 0.0
|
|
||||||
IgneousResistance = 0.0
|
|
||||||
FerrumResistance = 0.0
|
|
||||||
DropsSoulGemChance = 0.75
|
|
||||||
metadata/_custom_type_script = ExtResource("2_vuobh")
|
|
||||||
|
|
||||||
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"]
|
|
||||||
radius = 0.226425
|
|
||||||
height = 2.02807
|
|
||||||
|
|
||||||
[sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"]
|
|
||||||
height = 5.0
|
|
||||||
radius = 1.0
|
|
||||||
|
|
||||||
[sub_resource type="SphereShape3D" id="SphereShape3D_8vcnq"]
|
|
||||||
radius = 1.20703
|
|
||||||
|
|
||||||
[node name="Gold Sproingy" type="RigidBody3D"]
|
|
||||||
process_mode = 1
|
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0)
|
|
||||||
collision_layer = 10
|
|
||||||
collision_mask = 11
|
|
||||||
axis_lock_linear_y = true
|
|
||||||
axis_lock_angular_x = true
|
|
||||||
contact_monitor = true
|
|
||||||
max_contacts_reported = 1
|
|
||||||
script = ExtResource("1_bh4x8")
|
|
||||||
_enemyStatResource = SubResource("Resource_o3b7p")
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
|
||||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
|
||||||
shape = SubResource("CapsuleShape3D_cwfph")
|
|
||||||
|
|
||||||
[node name="NavAgent" type="NavigationAgent3D" parent="."]
|
|
||||||
unique_name_in_owner = true
|
|
||||||
path_max_distance = 3.01
|
|
||||||
simplify_path = true
|
|
||||||
avoidance_enabled = true
|
|
||||||
radius = 2.0
|
|
||||||
debug_path_custom_color = Color(1, 0, 0, 1)
|
|
||||||
|
|
||||||
[node name="LineOfSight" type="Area3D" parent="."]
|
|
||||||
unique_name_in_owner = true
|
|
||||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
|
||||||
collision_layer = 2
|
|
||||||
collision_mask = 2
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="LineOfSight"]
|
|
||||||
transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, -2)
|
|
||||||
shape = SubResource("CylinderShape3D_jbgmx")
|
|
||||||
|
|
||||||
[node name="PatrolTimer" type="Timer" parent="."]
|
|
||||||
unique_name_in_owner = true
|
|
||||||
wait_time = 10.0
|
|
||||||
autostart = true
|
|
||||||
|
|
||||||
[node name="AttackTimer" type="Timer" parent="."]
|
|
||||||
unique_name_in_owner = true
|
|
||||||
wait_time = 0.8
|
|
||||||
autostart = true
|
|
||||||
|
|
||||||
[node name="Raycast" type="RayCast3D" parent="."]
|
|
||||||
unique_name_in_owner = true
|
|
||||||
target_position = Vector3(0, 0, -5)
|
|
||||||
collision_mask = 3
|
|
||||||
|
|
||||||
[node name="EnemyModelView" parent="." instance=ExtResource("3_o1o4d")]
|
|
||||||
|
|
||||||
[node name="Collision" type="Area3D" parent="."]
|
|
||||||
collision_layer = 2048
|
|
||||||
collision_mask = 0
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="Collision"]
|
|
||||||
shape = SubResource("SphereShape3D_8vcnq")
|
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="58_471ij"]
|
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="58_471ij"]
|
||||||
|
|
||||||
[sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"]
|
[sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"]
|
||||||
viewport_path = NodePath("Sprite3D/SubViewport")
|
viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport")
|
||||||
|
|
||||||
[sub_resource type="SpriteFrames" id="SpriteFrames_srd2v"]
|
[sub_resource type="SpriteFrames" id="SpriteFrames_srd2v"]
|
||||||
animations = [{
|
animations = [{
|
||||||
@@ -213,7 +213,7 @@ length = 0.001
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -225,7 +225,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -242,7 +242,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -254,7 +254,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -271,7 +271,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -283,7 +283,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -300,7 +300,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -312,7 +312,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -499,14 +499,19 @@ texture_filter = 0
|
|||||||
render_priority = 100
|
render_priority = 100
|
||||||
texture = SubResource("ViewportTexture_h1kaf")
|
texture = SubResource("ViewportTexture_h1kaf")
|
||||||
|
|
||||||
[node name="SubViewport" type="SubViewport" parent="Sprite3D"]
|
[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"]
|
||||||
|
visibility_layer = 0
|
||||||
|
offset_right = 40.0
|
||||||
|
offset_bottom = 40.0
|
||||||
|
|
||||||
|
[node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"]
|
||||||
disable_3d = true
|
disable_3d = true
|
||||||
transparent_bg = true
|
transparent_bg = true
|
||||||
handle_input_locally = false
|
handle_input_locally = false
|
||||||
size = Vector2i(200, 200)
|
size = Vector2i(200, 200)
|
||||||
render_target_update_mode = 4
|
render_target_update_mode = 4
|
||||||
|
|
||||||
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewport"]
|
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
position = Vector2(100, 100)
|
position = Vector2(100, 100)
|
||||||
sprite_frames = SubResource("SpriteFrames_srd2v")
|
sprite_frames = SubResource("SpriteFrames_srd2v")
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ height = 5.0
|
|||||||
radius = 1.0
|
radius = 1.0
|
||||||
|
|
||||||
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_0h5s2"]
|
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_0h5s2"]
|
||||||
radius = 0.193181
|
radius = 0.404629
|
||||||
|
|
||||||
[sub_resource type="SphereShape3D" id="SphereShape3D_wrps7"]
|
[sub_resource type="SphereShape3D" id="SphereShape3D_wrps7"]
|
||||||
radius = 1.0
|
radius = 1.0
|
||||||
@@ -68,7 +68,8 @@ transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0,
|
|||||||
target_position = Vector3(0, 0, -5)
|
target_position = Vector3(0, 0, -5)
|
||||||
collision_mask = 3
|
collision_mask = 3
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
[node name="CollisionShape" type="CollisionShape3D" parent="."]
|
||||||
|
unique_name_in_owner = true
|
||||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.0824751, 0.212459, 0)
|
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, -0.0824751, 0.212459, 0)
|
||||||
shape = SubResource("CapsuleShape3D_0h5s2")
|
shape = SubResource("CapsuleShape3D_0h5s2")
|
||||||
|
|
||||||
|
|||||||
@@ -74,7 +74,7 @@
|
|||||||
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="71_ul4dn"]
|
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="71_ul4dn"]
|
||||||
|
|
||||||
[sub_resource type="ViewportTexture" id="ViewportTexture_v7t0v"]
|
[sub_resource type="ViewportTexture" id="ViewportTexture_v7t0v"]
|
||||||
viewport_path = NodePath("Sprite/SubViewport")
|
viewport_path = NodePath("Sprite/SubViewportContainer/SubViewport")
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wey7h"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wey7h"]
|
||||||
|
|
||||||
@@ -323,7 +323,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -335,7 +335,7 @@ tracks/1/keys = {
|
|||||||
tracks/2/type = "value"
|
tracks/2/type = "value"
|
||||||
tracks/2/imported = false
|
tracks/2/imported = false
|
||||||
tracks/2/enabled = true
|
tracks/2/enabled = true
|
||||||
tracks/2/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation")
|
tracks/2/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/2/interp = 1
|
tracks/2/interp = 1
|
||||||
tracks/2/loop_wrap = true
|
tracks/2/loop_wrap = true
|
||||||
tracks/2/keys = {
|
tracks/2/keys = {
|
||||||
@@ -353,7 +353,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -365,7 +365,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -383,7 +383,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -395,7 +395,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -413,7 +413,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -425,7 +425,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -443,7 +443,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -455,7 +455,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -473,7 +473,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -485,7 +485,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -503,7 +503,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -515,7 +515,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -544,7 +544,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -556,7 +556,7 @@ tracks/1/keys = {
|
|||||||
tracks/2/type = "value"
|
tracks/2/type = "value"
|
||||||
tracks/2/imported = false
|
tracks/2/imported = false
|
||||||
tracks/2/enabled = true
|
tracks/2/enabled = true
|
||||||
tracks/2/path = NodePath("Sprite/SubViewport/AnimatedSprite:frame")
|
tracks/2/path = NodePath("Sprite/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/2/interp = 1
|
tracks/2/interp = 1
|
||||||
tracks/2/loop_wrap = true
|
tracks/2/loop_wrap = true
|
||||||
tracks/2/keys = {
|
tracks/2/keys = {
|
||||||
@@ -732,13 +732,19 @@ texture_filter = 0
|
|||||||
render_priority = 100
|
render_priority = 100
|
||||||
texture = SubResource("ViewportTexture_v7t0v")
|
texture = SubResource("ViewportTexture_v7t0v")
|
||||||
|
|
||||||
[node name="SubViewport" type="SubViewport" parent="Sprite"]
|
[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite"]
|
||||||
|
visibility_layer = 0
|
||||||
|
offset_right = 40.0
|
||||||
|
offset_bottom = 40.0
|
||||||
|
|
||||||
|
[node name="SubViewport" type="SubViewport" parent="Sprite/SubViewportContainer"]
|
||||||
disable_3d = true
|
disable_3d = true
|
||||||
transparent_bg = true
|
transparent_bg = true
|
||||||
handle_input_locally = false
|
handle_input_locally = false
|
||||||
size = Vector2i(200, 200)
|
size = Vector2i(200, 200)
|
||||||
|
render_target_update_mode = 4
|
||||||
|
|
||||||
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite/SubViewport"]
|
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite/SubViewportContainer/SubViewport"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
texture_filter = 1
|
texture_filter = 1
|
||||||
texture_repeat = 1
|
texture_repeat = 1
|
||||||
|
|||||||
@@ -53,7 +53,8 @@ SecondaryAttackElementalType = 2
|
|||||||
SecondaryAttackElementalDamageBonus = 1.15
|
SecondaryAttackElementalDamageBonus = 1.15
|
||||||
_enemyStatResource = SubResource("Resource_0y048")
|
_enemyStatResource = SubResource("Resource_0y048")
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
[node name="CollisionShape" type="CollisionShape3D" parent="."]
|
||||||
|
unique_name_in_owner = true
|
||||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
||||||
shape = SubResource("CapsuleShape3D_cwfph")
|
shape = SubResource("CapsuleShape3D_cwfph")
|
||||||
|
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="87_7tggm"]
|
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="87_7tggm"]
|
||||||
|
|
||||||
[sub_resource type="ViewportTexture" id="ViewportTexture_7tggm"]
|
[sub_resource type="ViewportTexture" id="ViewportTexture_7tggm"]
|
||||||
viewport_path = NodePath("Sprite3D/SubViewport")
|
viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport")
|
||||||
|
|
||||||
[sub_resource type="SpriteFrames" id="SpriteFrames_673a4"]
|
[sub_resource type="SpriteFrames" id="SpriteFrames_673a4"]
|
||||||
animations = [{
|
animations = [{
|
||||||
@@ -383,7 +383,7 @@ length = 0.001
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -395,7 +395,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -422,7 +422,7 @@ resource_name = "idle_back"
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -434,7 +434,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -452,7 +452,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -464,7 +464,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -480,7 +480,7 @@ loop_mode = 1
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -492,7 +492,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -510,7 +510,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -522,7 +522,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -537,7 +537,7 @@ resource_name = "idle_left"
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -549,7 +549,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -567,7 +567,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -579,7 +579,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -596,7 +596,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -608,7 +608,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -637,7 +637,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -649,7 +649,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -855,14 +855,19 @@ texture_filter = 0
|
|||||||
render_priority = 100
|
render_priority = 100
|
||||||
texture = SubResource("ViewportTexture_7tggm")
|
texture = SubResource("ViewportTexture_7tggm")
|
||||||
|
|
||||||
[node name="SubViewport" type="SubViewport" parent="Sprite3D"]
|
[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"]
|
||||||
|
visibility_layer = 0
|
||||||
|
offset_right = 40.0
|
||||||
|
offset_bottom = 40.0
|
||||||
|
|
||||||
|
[node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"]
|
||||||
disable_3d = true
|
disable_3d = true
|
||||||
transparent_bg = true
|
transparent_bg = true
|
||||||
handle_input_locally = false
|
handle_input_locally = false
|
||||||
size = Vector2i(300, 300)
|
size = Vector2i(300, 300)
|
||||||
render_target_update_mode = 4
|
render_target_update_mode = 4
|
||||||
|
|
||||||
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewport"]
|
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
position = Vector2(150, 150)
|
position = Vector2(150, 150)
|
||||||
sprite_frames = SubResource("SpriteFrames_673a4")
|
sprite_frames = SubResource("SpriteFrames_673a4")
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://c5xijwxkg4pf6" path="res://src/enemy/enemy_types/5. ballos/BallosModelView.tscn" id="2_v2urn"]
|
[ext_resource type="PackedScene" uid="uid://c5xijwxkg4pf6" path="res://src/enemy/enemy_types/5. ballos/BallosModelView.tscn" id="2_v2urn"]
|
||||||
|
|
||||||
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"]
|
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"]
|
||||||
radius = 0.226425
|
radius = 0.717471
|
||||||
height = 2.02807
|
height = 2.02807
|
||||||
|
|
||||||
[sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"]
|
[sub_resource type="CylinderShape3D" id="CylinderShape3D_jbgmx"]
|
||||||
@@ -25,7 +25,8 @@ contact_monitor = true
|
|||||||
max_contacts_reported = 1
|
max_contacts_reported = 1
|
||||||
script = ExtResource("1_v2urn")
|
script = ExtResource("1_v2urn")
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
[node name="CollisionShape" type="CollisionShape3D" parent="."]
|
||||||
|
unique_name_in_owner = true
|
||||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
||||||
shape = SubResource("CapsuleShape3D_cwfph")
|
shape = SubResource("CapsuleShape3D_cwfph")
|
||||||
|
|
||||||
|
|||||||
@@ -72,7 +72,7 @@
|
|||||||
[ext_resource type="Texture2D" uid="uid://bnowktk238eax" path="res://src/enemy/enemy_types/5. ballos/ATTACK 2 FRONT/8.png" id="69_lf0o8"]
|
[ext_resource type="Texture2D" uid="uid://bnowktk238eax" path="res://src/enemy/enemy_types/5. ballos/ATTACK 2 FRONT/8.png" id="69_lf0o8"]
|
||||||
|
|
||||||
[sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"]
|
[sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"]
|
||||||
viewport_path = NodePath("Sprite3D/SubViewport")
|
viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport")
|
||||||
|
|
||||||
[sub_resource type="SpriteFrames" id="SpriteFrames_mlptn"]
|
[sub_resource type="SpriteFrames" id="SpriteFrames_mlptn"]
|
||||||
animations = [{
|
animations = [{
|
||||||
@@ -311,7 +311,7 @@ length = 0.001
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -323,7 +323,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -352,7 +352,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -364,7 +364,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -381,7 +381,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -393,7 +393,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -410,7 +410,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -422,7 +422,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -439,7 +439,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -451,7 +451,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -468,7 +468,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -480,7 +480,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -498,7 +498,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -510,7 +510,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -527,7 +527,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -539,7 +539,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -568,7 +568,7 @@ step = 0.0833333
|
|||||||
tracks/0/type = "value"
|
tracks/0/type = "value"
|
||||||
tracks/0/imported = false
|
tracks/0/imported = false
|
||||||
tracks/0/enabled = true
|
tracks/0/enabled = true
|
||||||
tracks/0/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:animation")
|
tracks/0/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:animation")
|
||||||
tracks/0/interp = 1
|
tracks/0/interp = 1
|
||||||
tracks/0/loop_wrap = true
|
tracks/0/loop_wrap = true
|
||||||
tracks/0/keys = {
|
tracks/0/keys = {
|
||||||
@@ -580,7 +580,7 @@ tracks/0/keys = {
|
|||||||
tracks/1/type = "value"
|
tracks/1/type = "value"
|
||||||
tracks/1/imported = false
|
tracks/1/imported = false
|
||||||
tracks/1/enabled = true
|
tracks/1/enabled = true
|
||||||
tracks/1/path = NodePath("Sprite3D/SubViewport/AnimatedSprite:frame")
|
tracks/1/path = NodePath("Sprite3D/SubViewportContainer/SubViewport/AnimatedSprite:frame")
|
||||||
tracks/1/interp = 1
|
tracks/1/interp = 1
|
||||||
tracks/1/loop_wrap = true
|
tracks/1/loop_wrap = true
|
||||||
tracks/1/keys = {
|
tracks/1/keys = {
|
||||||
@@ -785,14 +785,19 @@ texture_filter = 0
|
|||||||
render_priority = 100
|
render_priority = 100
|
||||||
texture = SubResource("ViewportTexture_h1kaf")
|
texture = SubResource("ViewportTexture_h1kaf")
|
||||||
|
|
||||||
[node name="SubViewport" type="SubViewport" parent="Sprite3D"]
|
[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"]
|
||||||
|
visibility_layer = 0
|
||||||
|
offset_right = 40.0
|
||||||
|
offset_bottom = 40.0
|
||||||
|
|
||||||
|
[node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"]
|
||||||
disable_3d = true
|
disable_3d = true
|
||||||
transparent_bg = true
|
transparent_bg = true
|
||||||
handle_input_locally = false
|
handle_input_locally = false
|
||||||
size = Vector2i(400, 400)
|
size = Vector2i(400, 400)
|
||||||
render_target_update_mode = 4
|
render_target_update_mode = 4
|
||||||
|
|
||||||
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewport"]
|
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"]
|
||||||
sprite_frames = SubResource("SpriteFrames_mlptn")
|
sprite_frames = SubResource("SpriteFrames_mlptn")
|
||||||
animation = &"idle_front_walk"
|
animation = &"idle_front_walk"
|
||||||
offset = Vector2(200, 200)
|
offset = Vector2(200, 200)
|
||||||
|
|||||||
@@ -43,7 +43,8 @@ max_contacts_reported = 1
|
|||||||
script = ExtResource("1_hqeyd")
|
script = ExtResource("1_hqeyd")
|
||||||
_enemyStatResource = SubResource("Resource_dvne1")
|
_enemyStatResource = SubResource("Resource_dvne1")
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
[node name="CollisionShape" type="CollisionShape3D" parent="."]
|
||||||
|
unique_name_in_owner = true
|
||||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
||||||
shape = SubResource("CapsuleShape3D_cwfph")
|
shape = SubResource("CapsuleShape3D_cwfph")
|
||||||
|
|
||||||
|
|||||||
@@ -623,6 +623,7 @@ render_priority = 100
|
|||||||
texture = SubResource("ViewportTexture_vr4bf")
|
texture = SubResource("ViewportTexture_vr4bf")
|
||||||
|
|
||||||
[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"]
|
[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"]
|
||||||
|
visibility_layer = 0
|
||||||
anchors_preset = -1
|
anchors_preset = -1
|
||||||
anchor_right = 0.348
|
anchor_right = 0.348
|
||||||
anchor_bottom = 0.356
|
anchor_bottom = 0.356
|
||||||
|
|||||||
@@ -1,34 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://b3ytuouobuup"
|
|
||||||
path="res://.godot/imported/HOP-BACK_page_0008.png-8ed311f68d7c10ab871ee20439da6773.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0008.png"
|
|
||||||
dest_files=["res://.godot/imported/HOP-BACK_page_0008.png-8ed311f68d7c10ab871ee20439da6773.ctex"]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/high_quality=false
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_compression=1
|
|
||||||
compress/normal_map=0
|
|
||||||
compress/channel_pack=0
|
|
||||||
mipmaps/generate=false
|
|
||||||
mipmaps/limit=-1
|
|
||||||
roughness/mode=0
|
|
||||||
roughness/src_normal=""
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
process/hdr_as_srgb=false
|
|
||||||
process/hdr_clamp_exposure=false
|
|
||||||
process/size_limit=0
|
|
||||||
detect_3d/compress_to=0
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://q7k840guefqk"
|
|
||||||
path="res://.godot/imported/IDLE-FRONT_page_0003.png-31c154506a3887a45154a98bc719e0f8.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png"
|
|
||||||
dest_files=["res://.godot/imported/IDLE-FRONT_page_0003.png-31c154506a3887a45154a98bc719e0f8.ctex"]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/high_quality=false
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_compression=1
|
|
||||||
compress/normal_map=0
|
|
||||||
compress/channel_pack=0
|
|
||||||
mipmaps/generate=false
|
|
||||||
mipmaps/limit=-1
|
|
||||||
roughness/mode=0
|
|
||||||
roughness/src_normal=""
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
process/hdr_as_srgb=false
|
|
||||||
process/hdr_clamp_exposure=false
|
|
||||||
process/size_limit=0
|
|
||||||
detect_3d/compress_to=0
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://bexb8p0l0cve3"
|
|
||||||
path="res://.godot/imported/IDLE-FRONT_page_0004.png-fd6e2d60ef3485800f047e21af0daa80.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png"
|
|
||||||
dest_files=["res://.godot/imported/IDLE-FRONT_page_0004.png-fd6e2d60ef3485800f047e21af0daa80.ctex"]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/high_quality=false
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_compression=1
|
|
||||||
compress/normal_map=0
|
|
||||||
compress/channel_pack=0
|
|
||||||
mipmaps/generate=false
|
|
||||||
mipmaps/limit=-1
|
|
||||||
roughness/mode=0
|
|
||||||
roughness/src_normal=""
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
process/hdr_as_srgb=false
|
|
||||||
process/hdr_clamp_exposure=false
|
|
||||||
process/size_limit=0
|
|
||||||
detect_3d/compress_to=0
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://bqtg2bdgpq2rv"
|
|
||||||
path="res://.godot/imported/IDLE-FRONT_page_0029.png-13036ac47021778db0efdcc6a288d030.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png"
|
|
||||||
dest_files=["res://.godot/imported/IDLE-FRONT_page_0029.png-13036ac47021778db0efdcc6a288d030.ctex"]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/high_quality=false
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_compression=1
|
|
||||||
compress/normal_map=0
|
|
||||||
compress/channel_pack=0
|
|
||||||
mipmaps/generate=false
|
|
||||||
mipmaps/limit=-1
|
|
||||||
roughness/mode=0
|
|
||||||
roughness/src_normal=""
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
process/hdr_as_srgb=false
|
|
||||||
process/hdr_clamp_exposure=false
|
|
||||||
process/size_limit=0
|
|
||||||
detect_3d/compress_to=0
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://cs3ffswn6r2vj"
|
|
||||||
path="res://.godot/imported/IDLE-FRONT_page_0038.png-6a18842dc285c6b2896978c6c5a13270.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png"
|
|
||||||
dest_files=["res://.godot/imported/IDLE-FRONT_page_0038.png-6a18842dc285c6b2896978c6c5a13270.ctex"]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/high_quality=false
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_compression=1
|
|
||||||
compress/normal_map=0
|
|
||||||
compress/channel_pack=0
|
|
||||||
mipmaps/generate=false
|
|
||||||
mipmaps/limit=-1
|
|
||||||
roughness/mode=0
|
|
||||||
roughness/src_normal=""
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
process/hdr_as_srgb=false
|
|
||||||
process/hdr_clamp_exposure=false
|
|
||||||
process/size_limit=0
|
|
||||||
detect_3d/compress_to=0
|
|
||||||
@@ -1,166 +1,166 @@
|
|||||||
[gd_scene load_steps=230 format=3 uid="uid://byd7cwxq1be6f"]
|
[gd_scene load_steps=230 format=3 uid="uid://byd7cwxq1be6f"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://chymnqdw7hibn" path="res://src/enemy/EnemyModelView.cs" id="1_v8om3"]
|
[ext_resource type="Script" uid="uid://chymnqdw7hibn" path="res://src/enemy/EnemyModelView.cs" id="1_v8om3"]
|
||||||
[ext_resource type="Resource" uid="uid://2j714tuwhbdu" path="res://src/enemy/enemy_types/7. chinte/ChinteLoreInfo.tres" id="2_syjm0"]
|
[ext_resource type="Resource" uid="uid://2j714tuwhbdu" path="res://src/enemy/enemy_types/7. chinthe/ChinteLoreInfo.tres" id="2_syjm0"]
|
||||||
[ext_resource type="Texture2D" uid="uid://8qj6se762l6e" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png" id="3_fn0g1"]
|
[ext_resource type="Texture2D" uid="uid://8qj6se762l6e" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png" id="3_fn0g1"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bicx2m6q0vqdw" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0001.png" id="3_kc1ey"]
|
[ext_resource type="Texture2D" uid="uid://bicx2m6q0vqdw" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0001.png" id="3_kc1ey"]
|
||||||
[ext_resource type="Texture2D" uid="uid://u2xjqc5ksrms" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0001.png" id="3_wc61w"]
|
[ext_resource type="Texture2D" uid="uid://u2xjqc5ksrms" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0001.png" id="3_wc61w"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cejvyh381ei1u" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0002.png" id="4_46p8q"]
|
[ext_resource type="Texture2D" uid="uid://cejvyh381ei1u" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0002.png" id="4_46p8q"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bvry4nr83oonj" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0002.png" id="4_50r4w"]
|
[ext_resource type="Texture2D" uid="uid://bvry4nr83oonj" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0002.png" id="4_50r4w"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cstm3bc1iyiou" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png" id="4_a1a5a"]
|
[ext_resource type="Texture2D" uid="uid://cstm3bc1iyiou" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png" id="4_a1a5a"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b7lk817ih82o7" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0003.png" id="5_7yoax"]
|
[ext_resource type="Texture2D" uid="uid://b7lk817ih82o7" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0003.png" id="5_7yoax"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dip1urkpqfsgj" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png" id="5_h1q27"]
|
[ext_resource type="Texture2D" uid="uid://dip1urkpqfsgj" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png" id="5_h1q27"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bgfqim1idm4kp" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0003.png" id="5_hcjtk"]
|
[ext_resource type="Texture2D" uid="uid://bgfqim1idm4kp" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0003.png" id="5_hcjtk"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bmd5cgqk2vg5o" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png" id="6_5nhn3"]
|
[ext_resource type="Texture2D" uid="uid://bmd5cgqk2vg5o" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png" id="6_5nhn3"]
|
||||||
[ext_resource type="Texture2D" uid="uid://d0jap5uvy72rj" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0004.png" id="6_8vac7"]
|
[ext_resource type="Texture2D" uid="uid://d0jap5uvy72rj" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0004.png" id="6_8vac7"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bseiwgxwdj8ih" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0004.png" id="6_by6kh"]
|
[ext_resource type="Texture2D" uid="uid://bseiwgxwdj8ih" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0004.png" id="6_by6kh"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cxxeds0c84a8j" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png" id="7_bgt1u"]
|
[ext_resource type="Texture2D" uid="uid://cxxeds0c84a8j" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png" id="7_bgt1u"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b15t1kc6bu42u" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0005.png" id="7_ci7tq"]
|
[ext_resource type="Texture2D" uid="uid://b15t1kc6bu42u" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0005.png" id="7_ci7tq"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cxwualwcihxf6" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0005.png" id="7_u7uex"]
|
[ext_resource type="Texture2D" uid="uid://cxwualwcihxf6" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0005.png" id="7_u7uex"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cr2opgprfenav" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0006.png" id="8_an5j3"]
|
[ext_resource type="Texture2D" uid="uid://cr2opgprfenav" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0006.png" id="8_an5j3"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bfsocf0k8yioa" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0006.png" id="8_crifn"]
|
[ext_resource type="Texture2D" uid="uid://bfsocf0k8yioa" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0006.png" id="8_crifn"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c14icwfjwg50p" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png" id="8_lo6gm"]
|
[ext_resource type="Texture2D" uid="uid://c14icwfjwg50p" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png" id="8_lo6gm"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dbxdjn6o36k3c" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0007.png" id="9_ah8eo"]
|
[ext_resource type="Texture2D" uid="uid://dbxdjn6o36k3c" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0007.png" id="9_ah8eo"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c2nutnin4pm3" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0007.png" id="9_f2uxp"]
|
[ext_resource type="Texture2D" uid="uid://c2nutnin4pm3" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0007.png" id="9_f2uxp"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dxkjrr3wneg7p" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png" id="9_yrerp"]
|
[ext_resource type="Texture2D" uid="uid://dxkjrr3wneg7p" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png" id="9_yrerp"]
|
||||||
[ext_resource type="Texture2D" uid="uid://ceyvr048ccsff" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0008.png" id="10_2o34q"]
|
[ext_resource type="Texture2D" uid="uid://ceyvr048ccsff" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0008.png" id="10_2o34q"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b3ytuouobuup" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0008.png" id="10_bjvhl"]
|
[ext_resource type="Texture2D" uid="uid://b3ytuouobuup" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0008.png" id="10_bjvhl"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dryfs7kwpt05m" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png" id="10_e08pp"]
|
[ext_resource type="Texture2D" uid="uid://dryfs7kwpt05m" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png" id="10_e08pp"]
|
||||||
[ext_resource type="Texture2D" uid="uid://beff1mhve0psp" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0009.png" id="11_04akx"]
|
[ext_resource type="Texture2D" uid="uid://beff1mhve0psp" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0009.png" id="11_04akx"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cyir2u6s0a803" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0009.png" id="11_acq66"]
|
[ext_resource type="Texture2D" uid="uid://cyir2u6s0a803" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0009.png" id="11_acq66"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cdsong01o1xof" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png" id="11_rkc3l"]
|
[ext_resource type="Texture2D" uid="uid://cdsong01o1xof" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png" id="11_rkc3l"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cjowfifu2ds1k" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0010.png" id="12_3vtes"]
|
[ext_resource type="Texture2D" uid="uid://cjowfifu2ds1k" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0010.png" id="12_3vtes"]
|
||||||
[ext_resource type="Texture2D" uid="uid://qi6ykbimr36j" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0010.png" id="12_r73tb"]
|
[ext_resource type="Texture2D" uid="uid://qi6ykbimr36j" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0010.png" id="12_r73tb"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b756p2shusa0y" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png" id="12_w023d"]
|
[ext_resource type="Texture2D" uid="uid://b756p2shusa0y" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png" id="12_w023d"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c0ixmdqj6728s" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0011.png" id="13_c0pct"]
|
[ext_resource type="Texture2D" uid="uid://c0ixmdqj6728s" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0011.png" id="13_c0pct"]
|
||||||
[ext_resource type="Texture2D" uid="uid://ccf5cdmbnv8xr" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png" id="13_gsd4b"]
|
[ext_resource type="Texture2D" uid="uid://ccf5cdmbnv8xr" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png" id="13_gsd4b"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dk3yw0kma6jrw" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0011.png" id="13_okyxa"]
|
[ext_resource type="Texture2D" uid="uid://dk3yw0kma6jrw" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0011.png" id="13_okyxa"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dlga6cbuomfhi" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0012.png" id="14_fxh0g"]
|
[ext_resource type="Texture2D" uid="uid://dlga6cbuomfhi" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0012.png" id="14_fxh0g"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bhxt86sqswrb8" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0012.png" id="14_vb0q8"]
|
[ext_resource type="Texture2D" uid="uid://bhxt86sqswrb8" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0012.png" id="14_vb0q8"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bx2tm5grtctlp" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png" id="14_w3lnt"]
|
[ext_resource type="Texture2D" uid="uid://bx2tm5grtctlp" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png" id="14_w3lnt"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bqrd222snxwnl" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png" id="15_hflxm"]
|
[ext_resource type="Texture2D" uid="uid://bqrd222snxwnl" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png" id="15_hflxm"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b26x8xh3o81vs" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0013.png" id="15_rernf"]
|
[ext_resource type="Texture2D" uid="uid://b26x8xh3o81vs" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0013.png" id="15_rernf"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cheahf8qonbgf" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0013.png" id="15_v8ycu"]
|
[ext_resource type="Texture2D" uid="uid://cheahf8qonbgf" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0013.png" id="15_v8ycu"]
|
||||||
[ext_resource type="Texture2D" uid="uid://0knojjfwjtgv" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0014.png" id="16_3awat"]
|
[ext_resource type="Texture2D" uid="uid://0knojjfwjtgv" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0014.png" id="16_3awat"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dw3qwomarv3p5" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0014.png" id="16_pvgkg"]
|
[ext_resource type="Texture2D" uid="uid://dw3qwomarv3p5" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0014.png" id="16_pvgkg"]
|
||||||
[ext_resource type="Texture2D" uid="uid://do8v0wcpvcm5y" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png" id="16_tkoig"]
|
[ext_resource type="Texture2D" uid="uid://do8v0wcpvcm5y" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png" id="16_tkoig"]
|
||||||
[ext_resource type="Texture2D" uid="uid://454bwm8i6to3" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0015.png" id="17_20o86"]
|
[ext_resource type="Texture2D" uid="uid://454bwm8i6to3" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0015.png" id="17_20o86"]
|
||||||
[ext_resource type="Texture2D" uid="uid://2jc2fo5rn4qt" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png" id="17_fe8py"]
|
[ext_resource type="Texture2D" uid="uid://2jc2fo5rn4qt" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png" id="17_fe8py"]
|
||||||
[ext_resource type="Texture2D" uid="uid://gawp5d82ei1v" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0015.png" id="17_odt21"]
|
[ext_resource type="Texture2D" uid="uid://gawp5d82ei1v" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0015.png" id="17_odt21"]
|
||||||
[ext_resource type="Texture2D" uid="uid://btau6dotyy0ia" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0016.png" id="18_fpbkg"]
|
[ext_resource type="Texture2D" uid="uid://btau6dotyy0ia" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0016.png" id="18_fpbkg"]
|
||||||
[ext_resource type="Texture2D" uid="uid://iaisooai5b00" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png" id="18_r30cm"]
|
[ext_resource type="Texture2D" uid="uid://iaisooai5b00" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png" id="18_r30cm"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bt0pwh1vkb2s7" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0016.png" id="18_sfrde"]
|
[ext_resource type="Texture2D" uid="uid://bt0pwh1vkb2s7" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0016.png" id="18_sfrde"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bo1n0em5ko127" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0017.png" id="19_71etv"]
|
[ext_resource type="Texture2D" uid="uid://bo1n0em5ko127" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0017.png" id="19_71etv"]
|
||||||
[ext_resource type="Texture2D" uid="uid://031jvbacuqil" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0017.png" id="19_76pi0"]
|
[ext_resource type="Texture2D" uid="uid://031jvbacuqil" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0017.png" id="19_76pi0"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b2rg4bvpyecdx" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png" id="19_pu4mr"]
|
[ext_resource type="Texture2D" uid="uid://b2rg4bvpyecdx" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png" id="19_pu4mr"]
|
||||||
[ext_resource type="Texture2D" uid="uid://kb65mk270fi1" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0018.png" id="20_o3gx4"]
|
[ext_resource type="Texture2D" uid="uid://kb65mk270fi1" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP BACK/HOP-BACK_page_0018.png" id="20_o3gx4"]
|
||||||
[ext_resource type="Texture2D" uid="uid://df6kiuum5x8mr" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png" id="20_whlmf"]
|
[ext_resource type="Texture2D" uid="uid://df6kiuum5x8mr" path="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png" id="20_whlmf"]
|
||||||
[ext_resource type="Texture2D" uid="uid://eh6puu82rihh" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0018.png" id="20_yjq2w"]
|
[ext_resource type="Texture2D" uid="uid://eh6puu82rihh" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP FRONT/HOP-FRONT_page_0018.png" id="20_yjq2w"]
|
||||||
[ext_resource type="Texture2D" uid="uid://ca116jnrpdthm" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0001.png" id="39_bqkpb"]
|
[ext_resource type="Texture2D" uid="uid://ca116jnrpdthm" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0001.png" id="39_bqkpb"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dt8pg4upblis8" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0001.png" id="39_cd8wr"]
|
[ext_resource type="Texture2D" uid="uid://dt8pg4upblis8" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0001.png" id="39_cd8wr"]
|
||||||
[ext_resource type="Texture2D" uid="uid://72xvqeu4hl6q" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0002.png" id="40_wn63w"]
|
[ext_resource type="Texture2D" uid="uid://72xvqeu4hl6q" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0002.png" id="40_wn63w"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bgd2y8bohe3qg" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0002.png" id="40_xt6k1"]
|
[ext_resource type="Texture2D" uid="uid://bgd2y8bohe3qg" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0002.png" id="40_xt6k1"]
|
||||||
[ext_resource type="Texture2D" uid="uid://do6eu4jk5n3od" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0003.png" id="41_527rs"]
|
[ext_resource type="Texture2D" uid="uid://do6eu4jk5n3od" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0003.png" id="41_527rs"]
|
||||||
[ext_resource type="Texture2D" uid="uid://q7k840guefqk" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png" id="41_sjxqo"]
|
[ext_resource type="Texture2D" uid="uid://q7k840guefqk" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0003.png" id="41_sjxqo"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bexb8p0l0cve3" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png" id="42_oxbfk"]
|
[ext_resource type="Texture2D" uid="uid://bexb8p0l0cve3" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0004.png" id="42_oxbfk"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c7h56b5iwvf2c" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0004.png" id="42_wnf4a"]
|
[ext_resource type="Texture2D" uid="uid://c7h56b5iwvf2c" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0004.png" id="42_wnf4a"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cns2ntxssdwi8" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0005.png" id="43_khm33"]
|
[ext_resource type="Texture2D" uid="uid://cns2ntxssdwi8" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0005.png" id="43_khm33"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dgpwachsks3xp" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0005.png" id="43_tk877"]
|
[ext_resource type="Texture2D" uid="uid://dgpwachsks3xp" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0005.png" id="43_tk877"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b11jugjoeemwi" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0006.png" id="44_q25x3"]
|
[ext_resource type="Texture2D" uid="uid://b11jugjoeemwi" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0006.png" id="44_q25x3"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bcwjdqnly70nt" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0006.png" id="44_taq5y"]
|
[ext_resource type="Texture2D" uid="uid://bcwjdqnly70nt" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0006.png" id="44_taq5y"]
|
||||||
[ext_resource type="Texture2D" uid="uid://d37b67irukipu" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0007.png" id="45_3iu4q"]
|
[ext_resource type="Texture2D" uid="uid://d37b67irukipu" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0007.png" id="45_3iu4q"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c3oh1wfc5jqai" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0007.png" id="45_abf28"]
|
[ext_resource type="Texture2D" uid="uid://c3oh1wfc5jqai" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0007.png" id="45_abf28"]
|
||||||
[ext_resource type="Texture2D" uid="uid://do5dhoe355yyh" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0008.png" id="46_f7m0w"]
|
[ext_resource type="Texture2D" uid="uid://do5dhoe355yyh" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0008.png" id="46_f7m0w"]
|
||||||
[ext_resource type="Texture2D" uid="uid://wsvvrx6ek2e3" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0008.png" id="46_yv3t6"]
|
[ext_resource type="Texture2D" uid="uid://wsvvrx6ek2e3" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0008.png" id="46_yv3t6"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cbijkmo1hob35" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0009.png" id="47_8sbse"]
|
[ext_resource type="Texture2D" uid="uid://cbijkmo1hob35" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0009.png" id="47_8sbse"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b8kccsf3n2biq" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0009.png" id="47_ajo64"]
|
[ext_resource type="Texture2D" uid="uid://b8kccsf3n2biq" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0009.png" id="47_ajo64"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dl3vfxi5rndxd" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0010.png" id="48_ptk6f"]
|
[ext_resource type="Texture2D" uid="uid://dl3vfxi5rndxd" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0010.png" id="48_ptk6f"]
|
||||||
[ext_resource type="Texture2D" uid="uid://eso4qhcusm4" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0010.png" id="48_qffrk"]
|
[ext_resource type="Texture2D" uid="uid://eso4qhcusm4" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0010.png" id="48_qffrk"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bg45bxbu16vol" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0011.png" id="49_2530t"]
|
[ext_resource type="Texture2D" uid="uid://bg45bxbu16vol" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0011.png" id="49_2530t"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dvaqbv6n525lb" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0011.png" id="49_efex0"]
|
[ext_resource type="Texture2D" uid="uid://dvaqbv6n525lb" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0011.png" id="49_efex0"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bw8p1oe3353uy" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0012.png" id="50_1cgr5"]
|
[ext_resource type="Texture2D" uid="uid://bw8p1oe3353uy" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0012.png" id="50_1cgr5"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b4gd3j0a0tb8a" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0012.png" id="50_shci7"]
|
[ext_resource type="Texture2D" uid="uid://b4gd3j0a0tb8a" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0012.png" id="50_shci7"]
|
||||||
[ext_resource type="Texture2D" uid="uid://5pj6asie3de1" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0013.png" id="51_slsns"]
|
[ext_resource type="Texture2D" uid="uid://5pj6asie3de1" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0013.png" id="51_slsns"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b40l6fsdqsad1" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0013.png" id="51_x6i3u"]
|
[ext_resource type="Texture2D" uid="uid://b40l6fsdqsad1" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0013.png" id="51_x6i3u"]
|
||||||
[ext_resource type="Texture2D" uid="uid://1r5sm6vvn2m6" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0014.png" id="52_g4ewi"]
|
[ext_resource type="Texture2D" uid="uid://1r5sm6vvn2m6" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0014.png" id="52_g4ewi"]
|
||||||
[ext_resource type="Texture2D" uid="uid://duwfyn662tspf" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0014.png" id="52_syjm0"]
|
[ext_resource type="Texture2D" uid="uid://duwfyn662tspf" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0014.png" id="52_syjm0"]
|
||||||
[ext_resource type="Texture2D" uid="uid://8xj0ko2g2deg" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0015.png" id="53_u06t8"]
|
[ext_resource type="Texture2D" uid="uid://8xj0ko2g2deg" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0015.png" id="53_u06t8"]
|
||||||
[ext_resource type="Texture2D" uid="uid://m4clglkawftb" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0015.png" id="53_udart"]
|
[ext_resource type="Texture2D" uid="uid://m4clglkawftb" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0015.png" id="53_udart"]
|
||||||
[ext_resource type="Texture2D" uid="uid://do1ewuo4yifrq" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0016.png" id="54_kilb8"]
|
[ext_resource type="Texture2D" uid="uid://do1ewuo4yifrq" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0016.png" id="54_kilb8"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dshrqgojp4yca" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0016.png" id="54_onul4"]
|
[ext_resource type="Texture2D" uid="uid://dshrqgojp4yca" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0016.png" id="54_onul4"]
|
||||||
[ext_resource type="Texture2D" uid="uid://drmbggwyc3lhu" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0017.png" id="55_5syoy"]
|
[ext_resource type="Texture2D" uid="uid://drmbggwyc3lhu" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0017.png" id="55_5syoy"]
|
||||||
[ext_resource type="Texture2D" uid="uid://ccx6r2ddh1i7a" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0017.png" id="55_sapra"]
|
[ext_resource type="Texture2D" uid="uid://ccx6r2ddh1i7a" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0017.png" id="55_sapra"]
|
||||||
[ext_resource type="Texture2D" uid="uid://5lo4a55mwhmc" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0018.png" id="56_1bw8i"]
|
[ext_resource type="Texture2D" uid="uid://5lo4a55mwhmc" path="res://src/enemy/enemy_types/7. chinthe/animations/HOP SIDE/HOP-SIDE_page_0018.png" id="56_1bw8i"]
|
||||||
[ext_resource type="Texture2D" uid="uid://jlk8y8njpr2h" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0018.png" id="56_37mk7"]
|
[ext_resource type="Texture2D" uid="uid://jlk8y8njpr2h" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0018.png" id="56_37mk7"]
|
||||||
[ext_resource type="Texture2D" uid="uid://di6654s8itcp0" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0019.png" id="57_pyfpi"]
|
[ext_resource type="Texture2D" uid="uid://di6654s8itcp0" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0019.png" id="57_pyfpi"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cfedqk2w3nb24" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png" id="57_syjm0"]
|
[ext_resource type="Texture2D" uid="uid://cfedqk2w3nb24" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0001.png" id="57_syjm0"]
|
||||||
[ext_resource type="Texture2D" uid="uid://6rwqt33pm75r" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0020.png" id="58_bo0u7"]
|
[ext_resource type="Texture2D" uid="uid://6rwqt33pm75r" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0020.png" id="58_bo0u7"]
|
||||||
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="58_o4frm"]
|
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="58_o4frm"]
|
||||||
[ext_resource type="Texture2D" uid="uid://v46ar0apf4lh" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png" id="58_u06t8"]
|
[ext_resource type="Texture2D" uid="uid://v46ar0apf4lh" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0002.png" id="58_u06t8"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dp3qnmhbdq6yb" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0021.png" id="59_mmg6v"]
|
[ext_resource type="Texture2D" uid="uid://dp3qnmhbdq6yb" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0021.png" id="59_mmg6v"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dlxfcvj1a23cd" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png" id="59_onul4"]
|
[ext_resource type="Texture2D" uid="uid://dlxfcvj1a23cd" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0003.png" id="59_onul4"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cx5f8gqwhii0s" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png" id="60_5syoy"]
|
[ext_resource type="Texture2D" uid="uid://cx5f8gqwhii0s" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0004.png" id="60_5syoy"]
|
||||||
[ext_resource type="Texture2D" uid="uid://kij4jgwp18tt" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0022.png" id="60_ugn17"]
|
[ext_resource type="Texture2D" uid="uid://kij4jgwp18tt" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0022.png" id="60_ugn17"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c1q0orfx8blpl" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png" id="61_1bw8i"]
|
[ext_resource type="Texture2D" uid="uid://c1q0orfx8blpl" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0005.png" id="61_1bw8i"]
|
||||||
[ext_resource type="Texture2D" uid="uid://1pp0crfb7hks" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0023.png" id="61_6avl1"]
|
[ext_resource type="Texture2D" uid="uid://1pp0crfb7hks" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0023.png" id="61_6avl1"]
|
||||||
[ext_resource type="Texture2D" uid="uid://do6gxsfcuw0a7" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0024.png" id="62_4qj4l"]
|
[ext_resource type="Texture2D" uid="uid://do6gxsfcuw0a7" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0024.png" id="62_4qj4l"]
|
||||||
[ext_resource type="Texture2D" uid="uid://df871udy5qulr" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png" id="62_wjklo"]
|
[ext_resource type="Texture2D" uid="uid://df871udy5qulr" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0006.png" id="62_wjklo"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bo4u5kafsy054" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0025.png" id="63_65528"]
|
[ext_resource type="Texture2D" uid="uid://bo4u5kafsy054" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0025.png" id="63_65528"]
|
||||||
[ext_resource type="Texture2D" uid="uid://br4ygmwb3nh4w" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png" id="63_sodds"]
|
[ext_resource type="Texture2D" uid="uid://br4ygmwb3nh4w" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0007.png" id="63_sodds"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b7q1ipnk2ephr" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png" id="64_dh2jp"]
|
[ext_resource type="Texture2D" uid="uid://b7q1ipnk2ephr" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0008.png" id="64_dh2jp"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dtkqg5y1nhy6r" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0026.png" id="64_gu26t"]
|
[ext_resource type="Texture2D" uid="uid://dtkqg5y1nhy6r" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0026.png" id="64_gu26t"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dadsnney0x42" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png" id="65_l2ena"]
|
[ext_resource type="Texture2D" uid="uid://dadsnney0x42" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0009.png" id="65_l2ena"]
|
||||||
[ext_resource type="Texture2D" uid="uid://co1vs3bnsoa7" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0027.png" id="65_ynv1n"]
|
[ext_resource type="Texture2D" uid="uid://co1vs3bnsoa7" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0027.png" id="65_ynv1n"]
|
||||||
[ext_resource type="Texture2D" uid="uid://y8a3iou4qln8" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0028.png" id="66_gixwu"]
|
[ext_resource type="Texture2D" uid="uid://y8a3iou4qln8" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0028.png" id="66_gixwu"]
|
||||||
[ext_resource type="Texture2D" uid="uid://vmx05ymn63li" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png" id="66_s6jhv"]
|
[ext_resource type="Texture2D" uid="uid://vmx05ymn63li" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0010.png" id="66_s6jhv"]
|
||||||
[ext_resource type="Texture2D" uid="uid://csf7n7f36uipy" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png" id="67_e64o6"]
|
[ext_resource type="Texture2D" uid="uid://csf7n7f36uipy" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0011.png" id="67_e64o6"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bqtg2bdgpq2rv" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png" id="67_g8xjv"]
|
[ext_resource type="Texture2D" uid="uid://bqtg2bdgpq2rv" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0029.png" id="67_g8xjv"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cg0ha8j7o1oyu" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png" id="68_eyy1p"]
|
[ext_resource type="Texture2D" uid="uid://cg0ha8j7o1oyu" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0012.png" id="68_eyy1p"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cj4gajmey2ffu" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0030.png" id="68_xgubf"]
|
[ext_resource type="Texture2D" uid="uid://cj4gajmey2ffu" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0030.png" id="68_xgubf"]
|
||||||
[ext_resource type="Texture2D" uid="uid://capfbno5347av" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0031.png" id="69_spgx8"]
|
[ext_resource type="Texture2D" uid="uid://capfbno5347av" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0031.png" id="69_spgx8"]
|
||||||
[ext_resource type="Texture2D" uid="uid://d2k0e3e6wrge6" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png" id="69_yof82"]
|
[ext_resource type="Texture2D" uid="uid://d2k0e3e6wrge6" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0013.png" id="69_yof82"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bdg54lnig84jf" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0032.png" id="70_gjh07"]
|
[ext_resource type="Texture2D" uid="uid://bdg54lnig84jf" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0032.png" id="70_gjh07"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dj25eww6n0s14" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png" id="70_nossm"]
|
[ext_resource type="Texture2D" uid="uid://dj25eww6n0s14" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0014.png" id="70_nossm"]
|
||||||
[ext_resource type="Texture2D" uid="uid://clkh7swfacmnl" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png" id="71_amnwg"]
|
[ext_resource type="Texture2D" uid="uid://clkh7swfacmnl" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0015.png" id="71_amnwg"]
|
||||||
[ext_resource type="Texture2D" uid="uid://d2ih2oqngbsln" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0033.png" id="71_cr2rb"]
|
[ext_resource type="Texture2D" uid="uid://d2ih2oqngbsln" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0033.png" id="71_cr2rb"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dr4tn3h51btjv" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0034.png" id="72_bupp5"]
|
[ext_resource type="Texture2D" uid="uid://dr4tn3h51btjv" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0034.png" id="72_bupp5"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b5nslpq2nf5j" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png" id="72_ycqjk"]
|
[ext_resource type="Texture2D" uid="uid://b5nslpq2nf5j" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0016.png" id="72_ycqjk"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c8mgfqsjkltk4" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png" id="73_hv728"]
|
[ext_resource type="Texture2D" uid="uid://c8mgfqsjkltk4" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0017.png" id="73_hv728"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dojq8vxobaqqa" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0035.png" id="73_j8se3"]
|
[ext_resource type="Texture2D" uid="uid://dojq8vxobaqqa" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0035.png" id="73_j8se3"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cbr4c44urpquh" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0036.png" id="74_7n2ap"]
|
[ext_resource type="Texture2D" uid="uid://cbr4c44urpquh" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0036.png" id="74_7n2ap"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cl4ahinbw38km" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0018.png" id="74_enbvd"]
|
[ext_resource type="Texture2D" uid="uid://cl4ahinbw38km" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0018.png" id="74_enbvd"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b2i1up3o1thk8" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0037.png" id="75_c05ix"]
|
[ext_resource type="Texture2D" uid="uid://b2i1up3o1thk8" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0037.png" id="75_c05ix"]
|
||||||
[ext_resource type="Texture2D" uid="uid://ddumhx8gbawkt" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0019.png" id="75_fn0g1"]
|
[ext_resource type="Texture2D" uid="uid://ddumhx8gbawkt" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0019.png" id="75_fn0g1"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cvx6bqxlqic28" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0020.png" id="76_a1a5a"]
|
[ext_resource type="Texture2D" uid="uid://cvx6bqxlqic28" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0020.png" id="76_a1a5a"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cs3ffswn6r2vj" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png" id="76_o4sme"]
|
[ext_resource type="Texture2D" uid="uid://cs3ffswn6r2vj" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0038.png" id="76_o4sme"]
|
||||||
[ext_resource type="Texture2D" uid="uid://d0jwb06jsit3k" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0039.png" id="77_5laso"]
|
[ext_resource type="Texture2D" uid="uid://d0jwb06jsit3k" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0039.png" id="77_5laso"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dp4dyxjvvf11t" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0021.png" id="77_h1q27"]
|
[ext_resource type="Texture2D" uid="uid://dp4dyxjvvf11t" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0021.png" id="77_h1q27"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bfgpfrnu55fvd" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0022.png" id="78_5nhn3"]
|
[ext_resource type="Texture2D" uid="uid://bfgpfrnu55fvd" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0022.png" id="78_5nhn3"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bc340i18dejwu" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0040.png" id="78_7mbxa"]
|
[ext_resource type="Texture2D" uid="uid://bc340i18dejwu" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0040.png" id="78_7mbxa"]
|
||||||
[ext_resource type="Texture2D" uid="uid://blyndvuc8elvn" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0023.png" id="79_bgt1u"]
|
[ext_resource type="Texture2D" uid="uid://blyndvuc8elvn" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0023.png" id="79_bgt1u"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b0yfrwc83u6yu" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0041.png" id="79_m1x6w"]
|
[ext_resource type="Texture2D" uid="uid://b0yfrwc83u6yu" path="res://src/enemy/enemy_types/7. chinthe/animations/IDLE FRONT/IDLE-FRONT_page_0041.png" id="79_m1x6w"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bxufrxhi1f6w1" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0024.png" id="80_lo6gm"]
|
[ext_resource type="Texture2D" uid="uid://bxufrxhi1f6w1" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0024.png" id="80_lo6gm"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b7sbrrb6uth4m" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0025.png" id="81_yrerp"]
|
[ext_resource type="Texture2D" uid="uid://b7sbrrb6uth4m" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0025.png" id="81_yrerp"]
|
||||||
[ext_resource type="Texture2D" uid="uid://g3jg26dtwbwn" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0026.png" id="82_e08pp"]
|
[ext_resource type="Texture2D" uid="uid://g3jg26dtwbwn" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0026.png" id="82_e08pp"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b16jouwprfqwa" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0027.png" id="83_rkc3l"]
|
[ext_resource type="Texture2D" uid="uid://b16jouwprfqwa" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0027.png" id="83_rkc3l"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b34kahr1kgxxw" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0028.png" id="84_w023d"]
|
[ext_resource type="Texture2D" uid="uid://b34kahr1kgxxw" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0028.png" id="84_w023d"]
|
||||||
[ext_resource type="Texture2D" uid="uid://catbl4pjo72ox" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0029.png" id="85_gsd4b"]
|
[ext_resource type="Texture2D" uid="uid://catbl4pjo72ox" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0029.png" id="85_gsd4b"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dbg3r41b0pq72" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0030.png" id="86_w3lnt"]
|
[ext_resource type="Texture2D" uid="uid://dbg3r41b0pq72" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0030.png" id="86_w3lnt"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b575g3v01jphe" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0031.png" id="87_hflxm"]
|
[ext_resource type="Texture2D" uid="uid://b575g3v01jphe" path="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0031.png" id="87_hflxm"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cc3evj00rj3a4" path="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE BACK.png" id="116_8ver2"]
|
[ext_resource type="Texture2D" uid="uid://cc3evj00rj3a4" path="res://src/enemy/enemy_types/7. chinthe/animations/INACTIVE BACK.png" id="116_8ver2"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bxv6qhhnwljcu" path="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE FRONT.png" id="117_bpa81"]
|
[ext_resource type="Texture2D" uid="uid://bxv6qhhnwljcu" path="res://src/enemy/enemy_types/7. chinthe/animations/INACTIVE FRONT.png" id="117_bpa81"]
|
||||||
[ext_resource type="Texture2D" uid="uid://6og6nw440rba" path="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE SIDE.png" id="118_f7hsl"]
|
[ext_resource type="Texture2D" uid="uid://6og6nw440rba" path="res://src/enemy/enemy_types/7. chinthe/animations/INACTIVE SIDE.png" id="118_f7hsl"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c321u4x7ii5i2" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0001.png" id="150_1cgr5"]
|
[ext_resource type="Texture2D" uid="uid://c321u4x7ii5i2" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0001.png" id="150_1cgr5"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bjn32jqcqlm70" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0002.png" id="151_slsns"]
|
[ext_resource type="Texture2D" uid="uid://bjn32jqcqlm70" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0002.png" id="151_slsns"]
|
||||||
[ext_resource type="Texture2D" uid="uid://0arlp5ks8xb2" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0003.png" id="152_g4ewi"]
|
[ext_resource type="Texture2D" uid="uid://0arlp5ks8xb2" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0003.png" id="152_g4ewi"]
|
||||||
[ext_resource type="Texture2D" uid="uid://35ujy0kklmeh" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0004.png" id="153_udart"]
|
[ext_resource type="Texture2D" uid="uid://35ujy0kklmeh" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0004.png" id="153_udart"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dye6h7vfurqam" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0005.png" id="154_kilb8"]
|
[ext_resource type="Texture2D" uid="uid://dye6h7vfurqam" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0005.png" id="154_kilb8"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cndpxx2puyhlu" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0006.png" id="155_sapra"]
|
[ext_resource type="Texture2D" uid="uid://cndpxx2puyhlu" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0006.png" id="155_sapra"]
|
||||||
[ext_resource type="Texture2D" uid="uid://7i6ax70hh880" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0007.png" id="156_37mk7"]
|
[ext_resource type="Texture2D" uid="uid://7i6ax70hh880" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0007.png" id="156_37mk7"]
|
||||||
[ext_resource type="Texture2D" uid="uid://7q8kbguc0odk" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0008.png" id="157_pyfpi"]
|
[ext_resource type="Texture2D" uid="uid://7q8kbguc0odk" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0008.png" id="157_pyfpi"]
|
||||||
[ext_resource type="Texture2D" uid="uid://75mrdvb1vy77" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0009.png" id="158_bo0u7"]
|
[ext_resource type="Texture2D" uid="uid://75mrdvb1vy77" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0009.png" id="158_bo0u7"]
|
||||||
[ext_resource type="Texture2D" uid="uid://xp31l3govdc6" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0010.png" id="159_mmg6v"]
|
[ext_resource type="Texture2D" uid="uid://xp31l3govdc6" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0010.png" id="159_mmg6v"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cdv6qy3hdbqnb" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0011.png" id="160_ugn17"]
|
[ext_resource type="Texture2D" uid="uid://cdv6qy3hdbqnb" path="res://src/enemy/enemy_types/7. chinthe/animations/TELEPORT/TELEPORT_page_0011.png" id="160_ugn17"]
|
||||||
|
|
||||||
[sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"]
|
[sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"]
|
||||||
viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport")
|
viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport")
|
||||||
@@ -1368,6 +1368,7 @@ render_priority = 100
|
|||||||
texture = SubResource("ViewportTexture_h1kaf")
|
texture = SubResource("ViewportTexture_h1kaf")
|
||||||
|
|
||||||
[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"]
|
[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"]
|
||||||
|
visibility_layer = 0
|
||||||
offset_right = 40.0
|
offset_right = 40.0
|
||||||
offset_bottom = 40.0
|
offset_bottom = 40.0
|
||||||
|
|
||||||
@@ -1,26 +1,7 @@
|
|||||||
[gd_scene load_steps=8 format=3 uid="uid://c6tqt27ql8s35"]
|
[gd_scene load_steps=6 format=3 uid="uid://c6tqt27ql8s35"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.cs" id="1_ekh38"]
|
[ext_resource type="Script" uid="uid://fwtjthix6awv" path="res://src/enemy/enemy_types/7. chinthe/Chinthe.cs" id="1_vw2ww"]
|
||||||
[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_cqc5j"]
|
[ext_resource type="PackedScene" uid="uid://byd7cwxq1be6f" path="res://src/enemy/enemy_types/7. chinthe/ChinteModelView.tscn" id="3_ncr2e"]
|
||||||
[ext_resource type="PackedScene" uid="uid://byd7cwxq1be6f" path="res://src/enemy/enemy_types/7. chinte/ChinteModelView.tscn" id="3_ncr2e"]
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_o3b7p"]
|
|
||||||
script = ExtResource("2_cqc5j")
|
|
||||||
CurrentHP = 50.0
|
|
||||||
MaximumHP = 50.0
|
|
||||||
CurrentAttack = 20
|
|
||||||
CurrentDefense = 5
|
|
||||||
MaxAttack = 20
|
|
||||||
MaxDefense = 5
|
|
||||||
ExpFromDefeat = 15
|
|
||||||
Luck = 0.05
|
|
||||||
TelluricResistance = 0.0
|
|
||||||
AeolicResistance = 0.0
|
|
||||||
HydricResistance = 0.0
|
|
||||||
IgneousResistance = 0.0
|
|
||||||
FerrumResistance = 0.0
|
|
||||||
DropsSoulGemChance = 0.75
|
|
||||||
metadata/_custom_type_script = ExtResource("2_cqc5j")
|
|
||||||
|
|
||||||
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"]
|
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cwfph"]
|
||||||
radius = 0.226425
|
radius = 0.226425
|
||||||
@@ -41,10 +22,10 @@ axis_lock_linear_y = true
|
|||||||
axis_lock_angular_x = true
|
axis_lock_angular_x = true
|
||||||
contact_monitor = true
|
contact_monitor = true
|
||||||
max_contacts_reported = 1
|
max_contacts_reported = 1
|
||||||
script = ExtResource("1_ekh38")
|
script = ExtResource("1_vw2ww")
|
||||||
_enemyStatResource = SubResource("Resource_o3b7p")
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
[node name="CollisionShape" type="CollisionShape3D" parent="."]
|
||||||
|
unique_name_in_owner = true
|
||||||
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
|
||||||
shape = SubResource("CapsuleShape3D_cwfph")
|
shape = SubResource("CapsuleShape3D_cwfph")
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://8qj6se762l6e"
|
uid="uid://8qj6se762l6e"
|
||||||
path="res://.godot/imported/ACTIVATE-BACK_page_0001.png-f1a414d245df5675a6a7e9fadf9b2ce3.ctex"
|
path="res://.godot/imported/ACTIVATE-BACK_page_0001.png-9927c971ce2bf5abc560e9fc27f79fc9.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0001.png-f1a414d245df5675a6a7e9fadf9b2ce3.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0001.png-9927c971ce2bf5abc560e9fc27f79fc9.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cstm3bc1iyiou"
|
uid="uid://cstm3bc1iyiou"
|
||||||
path="res://.godot/imported/ACTIVATE-BACK_page_0002.png-6506036f557ae6a150bec42c116a3544.ctex"
|
path="res://.godot/imported/ACTIVATE-BACK_page_0002.png-74dc4c48c06181b680d1f291847107f1.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0002.png-6506036f557ae6a150bec42c116a3544.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0002.png-74dc4c48c06181b680d1f291847107f1.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://dip1urkpqfsgj"
|
uid="uid://dip1urkpqfsgj"
|
||||||
path="res://.godot/imported/ACTIVATE-BACK_page_0003.png-86dbce37e5253e33bea75529fbdb5ff3.ctex"
|
path="res://.godot/imported/ACTIVATE-BACK_page_0003.png-11941924a649b5d4ff585d88dccbc573.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0003.png-86dbce37e5253e33bea75529fbdb5ff3.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0003.png-11941924a649b5d4ff585d88dccbc573.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://bmd5cgqk2vg5o"
|
uid="uid://bmd5cgqk2vg5o"
|
||||||
path="res://.godot/imported/ACTIVATE-BACK_page_0004.png-7409748461b2c0dd7e259dc181a7185a.ctex"
|
path="res://.godot/imported/ACTIVATE-BACK_page_0004.png-a015ebfbc84db6474b3091c80979b8d9.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0004.png-7409748461b2c0dd7e259dc181a7185a.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0004.png-a015ebfbc84db6474b3091c80979b8d9.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cxxeds0c84a8j"
|
uid="uid://cxxeds0c84a8j"
|
||||||
path="res://.godot/imported/ACTIVATE-BACK_page_0005.png-96fd6de77d680d85c4b4330bf02bfaf4.ctex"
|
path="res://.godot/imported/ACTIVATE-BACK_page_0005.png-0aa7b04f159e3030bc3a3bf0ac8c0628.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0005.png-96fd6de77d680d85c4b4330bf02bfaf4.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0005.png-0aa7b04f159e3030bc3a3bf0ac8c0628.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://c14icwfjwg50p"
|
uid="uid://c14icwfjwg50p"
|
||||||
path="res://.godot/imported/ACTIVATE-BACK_page_0006.png-7c17e5cdf694e77d498907ad53dffd42.ctex"
|
path="res://.godot/imported/ACTIVATE-BACK_page_0006.png-6329c31abd1c638681f1e76a02fb012a.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0006.png-7c17e5cdf694e77d498907ad53dffd42.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0006.png-6329c31abd1c638681f1e76a02fb012a.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://dxkjrr3wneg7p"
|
uid="uid://dxkjrr3wneg7p"
|
||||||
path="res://.godot/imported/ACTIVATE-FRONT_page_0001.png-49a3b422cb2bd761f1569d40f77f361b.ctex"
|
path="res://.godot/imported/ACTIVATE-FRONT_page_0001.png-bafe78ed594692fd92a9bd4f40a55250.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0001.png-49a3b422cb2bd761f1569d40f77f361b.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0001.png-bafe78ed594692fd92a9bd4f40a55250.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://dryfs7kwpt05m"
|
uid="uid://dryfs7kwpt05m"
|
||||||
path="res://.godot/imported/ACTIVATE-FRONT_page_0002.png-ed28c46c5d195d874f4af61d42e367ef.ctex"
|
path="res://.godot/imported/ACTIVATE-FRONT_page_0002.png-9d38cb86eb1e1bcfb8aa3456a4bdcea9.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0002.png-ed28c46c5d195d874f4af61d42e367ef.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0002.png-9d38cb86eb1e1bcfb8aa3456a4bdcea9.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cdsong01o1xof"
|
uid="uid://cdsong01o1xof"
|
||||||
path="res://.godot/imported/ACTIVATE-FRONT_page_0003.png-db23aab30b26bafd3b89442b3ecdbdd5.ctex"
|
path="res://.godot/imported/ACTIVATE-FRONT_page_0003.png-6fb7551374b6473e65dffabd1cc13b78.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0003.png-db23aab30b26bafd3b89442b3ecdbdd5.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0003.png-6fb7551374b6473e65dffabd1cc13b78.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://b756p2shusa0y"
|
uid="uid://b756p2shusa0y"
|
||||||
path="res://.godot/imported/ACTIVATE-FRONT_page_0004.png-b1cf913694bc542c1c1cbaf6fdf88560.ctex"
|
path="res://.godot/imported/ACTIVATE-FRONT_page_0004.png-0d2ce2f85166172b5b7e5b6306a476e1.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0004.png-b1cf913694bc542c1c1cbaf6fdf88560.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0004.png-0d2ce2f85166172b5b7e5b6306a476e1.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://ccf5cdmbnv8xr"
|
uid="uid://ccf5cdmbnv8xr"
|
||||||
path="res://.godot/imported/ACTIVATE-FRONT_page_0005.png-4b64c302a59038e58cbd67f47f08622c.ctex"
|
path="res://.godot/imported/ACTIVATE-FRONT_page_0005.png-b3e2bcac180ae1f63386b4ad126278c8.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0005.png-4b64c302a59038e58cbd67f47f08622c.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0005.png-b3e2bcac180ae1f63386b4ad126278c8.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://bx2tm5grtctlp"
|
uid="uid://bx2tm5grtctlp"
|
||||||
path="res://.godot/imported/ACTIVATE-FRONT_page_0006.png-b95c9c6819430a558e5dffa6489459bf.ctex"
|
path="res://.godot/imported/ACTIVATE-FRONT_page_0006.png-f5ce557dbe3b0ec8a1a511f3fc70a4ab.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0006.png-b95c9c6819430a558e5dffa6489459bf.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-FRONT_page_0006.png-f5ce557dbe3b0ec8a1a511f3fc70a4ab.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://bqrd222snxwnl"
|
uid="uid://bqrd222snxwnl"
|
||||||
path="res://.godot/imported/ACTIVATE-SIDE_page_0001.png-22c2d914fee27b42a06db9cc8f6d5528.ctex"
|
path="res://.godot/imported/ACTIVATE-SIDE_page_0001.png-15fc362992f5590d7744abfebe0f877b.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0001.png-22c2d914fee27b42a06db9cc8f6d5528.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0001.png-15fc362992f5590d7744abfebe0f877b.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://do8v0wcpvcm5y"
|
uid="uid://do8v0wcpvcm5y"
|
||||||
path="res://.godot/imported/ACTIVATE-SIDE_page_0002.png-5e962fe9481c24bf33fae650b51205f3.ctex"
|
path="res://.godot/imported/ACTIVATE-SIDE_page_0002.png-bb9e925c3bad31bd7b7bae86394e3c42.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0002.png-5e962fe9481c24bf33fae650b51205f3.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0002.png-bb9e925c3bad31bd7b7bae86394e3c42.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://2jc2fo5rn4qt"
|
uid="uid://2jc2fo5rn4qt"
|
||||||
path="res://.godot/imported/ACTIVATE-SIDE_page_0003.png-8213fd6682c16d678dea58e20c4c97ca.ctex"
|
path="res://.godot/imported/ACTIVATE-SIDE_page_0003.png-19af166c8132eaada2e42ba593cdec6d.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0003.png-8213fd6682c16d678dea58e20c4c97ca.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0003.png-19af166c8132eaada2e42ba593cdec6d.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://iaisooai5b00"
|
uid="uid://iaisooai5b00"
|
||||||
path="res://.godot/imported/ACTIVATE-SIDE_page_0004.png-37a9d8ab45dbbd2a5be74662bfd1196a.ctex"
|
path="res://.godot/imported/ACTIVATE-SIDE_page_0004.png-403ed317d01809b0b2294255ae29deac.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0004.png-37a9d8ab45dbbd2a5be74662bfd1196a.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0004.png-403ed317d01809b0b2294255ae29deac.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://b2rg4bvpyecdx"
|
uid="uid://b2rg4bvpyecdx"
|
||||||
path="res://.godot/imported/ACTIVATE-SIDE_page_0005.png-f0a7ed184874c3fd8623134603d800e2.ctex"
|
path="res://.godot/imported/ACTIVATE-SIDE_page_0005.png-1362e347dcd13292706c8a1874ecbb2e.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0005.png-f0a7ed184874c3fd8623134603d800e2.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0005.png-1362e347dcd13292706c8a1874ecbb2e.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://df6kiuum5x8mr"
|
uid="uid://df6kiuum5x8mr"
|
||||||
path="res://.godot/imported/ACTIVATE-SIDE_page_0006.png-b49939d1e8e93932f9e9bb6987bf6633.ctex"
|
path="res://.godot/imported/ACTIVATE-SIDE_page_0006.png-344ea40ae145cbba43da8b03d9fa6a0d.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png"
|
||||||
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0006.png-b49939d1e8e93932f9e9bb6987bf6633.ctex"]
|
dest_files=["res://.godot/imported/ACTIVATE-SIDE_page_0006.png-344ea40ae145cbba43da8b03d9fa6a0d.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cfedqk2w3nb24"
|
uid="uid://cfedqk2w3nb24"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0001.png-e8d412c6bf752bc9424198d1c9ebdd50.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0001.png-6990c51f93a0ac5a6e5767eaa310fc7b.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0001.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0001.png-e8d412c6bf752bc9424198d1c9ebdd50.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0001.png-6990c51f93a0ac5a6e5767eaa310fc7b.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://v46ar0apf4lh"
|
uid="uid://v46ar0apf4lh"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0002.png-0a03dcb3de751ea0cb0a5352b07ebd0f.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0002.png-fbe8619ddbb1c5a50f4b5791429cfd82.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0002.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0002.png-0a03dcb3de751ea0cb0a5352b07ebd0f.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0002.png-fbe8619ddbb1c5a50f4b5791429cfd82.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://dlxfcvj1a23cd"
|
uid="uid://dlxfcvj1a23cd"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0003.png-084bf42c6b5d46582bb8ccc39a4e176c.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0003.png-0d7088d83ea72a749046811b6b7d0dac.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0003.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0003.png-084bf42c6b5d46582bb8ccc39a4e176c.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0003.png-0d7088d83ea72a749046811b6b7d0dac.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cx5f8gqwhii0s"
|
uid="uid://cx5f8gqwhii0s"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0004.png-cc3998357e2468258611270ebbfb8a8e.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0004.png-01a330a531875f6faa70c92163c67d0b.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0004.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0004.png-cc3998357e2468258611270ebbfb8a8e.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0004.png-01a330a531875f6faa70c92163c67d0b.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://c1q0orfx8blpl"
|
uid="uid://c1q0orfx8blpl"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0005.png-68984f4ef18c0b93763fa396bf824a9c.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0005.png-e1bdb705ecbd7ec785a4803aedc3ef72.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0005.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0005.png-68984f4ef18c0b93763fa396bf824a9c.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0005.png-e1bdb705ecbd7ec785a4803aedc3ef72.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://df871udy5qulr"
|
uid="uid://df871udy5qulr"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0006.png-f8892820fcbdccde304be1b817b82ae5.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0006.png-76259aa281ab0daf28b5a41ad2e3932a.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0006.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0006.png-f8892820fcbdccde304be1b817b82ae5.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0006.png-76259aa281ab0daf28b5a41ad2e3932a.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://br4ygmwb3nh4w"
|
uid="uid://br4ygmwb3nh4w"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0007.png-14a62edd1ffc7706317f560bcbd6a40c.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0007.png-3d8c92ca94ff93a2d82c8b06283ad315.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0007.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0007.png-14a62edd1ffc7706317f560bcbd6a40c.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0007.png-3d8c92ca94ff93a2d82c8b06283ad315.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://b7q1ipnk2ephr"
|
uid="uid://b7q1ipnk2ephr"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0008.png-6fee8855a9feab656e64524c18af4c52.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0008.png-46ddfeafe1b02a3af2cef15844ee22a9.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0008.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0008.png-6fee8855a9feab656e64524c18af4c52.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0008.png-46ddfeafe1b02a3af2cef15844ee22a9.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://dadsnney0x42"
|
uid="uid://dadsnney0x42"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0009.png-b81b5aecefe109fbf30eb8b64dafe4ce.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0009.png-5502b6eeb1e8f80f7b53b9900f593b25.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0009.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0009.png-b81b5aecefe109fbf30eb8b64dafe4ce.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0009.png-5502b6eeb1e8f80f7b53b9900f593b25.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://vmx05ymn63li"
|
uid="uid://vmx05ymn63li"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0010.png-4464ef11ad4a20eacf0cc07cbe07c699.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0010.png-ba2e1c472fa262cd3ded626f496bb4a2.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0010.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0010.png-4464ef11ad4a20eacf0cc07cbe07c699.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0010.png-ba2e1c472fa262cd3ded626f496bb4a2.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://csf7n7f36uipy"
|
uid="uid://csf7n7f36uipy"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0011.png-2c958b711edcfe12daaa9e7400342469.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0011.png-66a4ecd1eb8fa0ab092a6cdb0cae10f8.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0011.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0011.png-2c958b711edcfe12daaa9e7400342469.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0011.png-66a4ecd1eb8fa0ab092a6cdb0cae10f8.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cg0ha8j7o1oyu"
|
uid="uid://cg0ha8j7o1oyu"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0012.png-d932907a782249c603b12dfb70d3dd76.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0012.png-a725fcbaed92c54f92b6b654d927a0bb.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0012.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0012.png-d932907a782249c603b12dfb70d3dd76.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0012.png-a725fcbaed92c54f92b6b654d927a0bb.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://d2k0e3e6wrge6"
|
uid="uid://d2k0e3e6wrge6"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0013.png-b1d21a4a844382decb39bd78282f3b99.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0013.png-1b0789e56aa7602447b338947d1e02fb.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0013.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0013.png-b1d21a4a844382decb39bd78282f3b99.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0013.png-1b0789e56aa7602447b338947d1e02fb.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://dj25eww6n0s14"
|
uid="uid://dj25eww6n0s14"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0014.png-bd11e74dc0ee272d63f7992fbb5b9c66.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0014.png-d263e23eb1cc174624dff8e66cbb55ce.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0014.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0014.png-bd11e74dc0ee272d63f7992fbb5b9c66.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0014.png-d263e23eb1cc174624dff8e66cbb55ce.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://clkh7swfacmnl"
|
uid="uid://clkh7swfacmnl"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0015.png-56e57e104ab5c6e1d135d856641aa990.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0015.png-17d16f8660e2d5ea21edac20a099db36.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0015.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0015.png-56e57e104ab5c6e1d135d856641aa990.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0015.png-17d16f8660e2d5ea21edac20a099db36.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://b5nslpq2nf5j"
|
uid="uid://b5nslpq2nf5j"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0016.png-e69d9e5485cf2efbb8d1f7b600d67d04.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0016.png-4b364ece194688ba41484d533674480a.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0016.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0016.png-e69d9e5485cf2efbb8d1f7b600d67d04.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0016.png-4b364ece194688ba41484d533674480a.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://c8mgfqsjkltk4"
|
uid="uid://c8mgfqsjkltk4"
|
||||||
path="res://.godot/imported/ATTACK1-FRONT_page_0017.png-8f83b00c510a2368f7c4a2e8c1b51f4d.ctex"
|
path="res://.godot/imported/ATTACK1-FRONT_page_0017.png-52c0b6f1ff2954e407684e2d45f36b9b.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png"
|
source_file="res://src/enemy/enemy_types/7. chinthe/animations/ATTACK/ATTACK1-FRONT_page_0017.png"
|
||||||
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0017.png-8f83b00c510a2368f7c4a2e8c1b51f4d.ctex"]
|
dest_files=["res://.godot/imported/ATTACK1-FRONT_page_0017.png-52c0b6f1ff2954e407684e2d45f36b9b.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |