Various additions and fixes

This commit is contained in:
2025-02-11 02:39:31 -08:00
parent 3e42ee4914
commit 556f12de1e
1517 changed files with 13624 additions and 12282 deletions

View File

@@ -1,11 +1,11 @@
[gd_scene load_steps=8 format=3 uid="uid://c7wjbgbrdivol"]
[ext_resource type="Script" path="res://src/data_viewer/DataViewer.cs" id="1_1qako"]
[ext_resource type="Script" uid="uid://bgaflnnur26vk" path="res://src/data_viewer/DataViewer.cs" id="1_1qako"]
[ext_resource type="Theme" uid="uid://daxuhpmyxwxck" path="res://src/inventory_menu/InventoryDialogueSelectionStyle.tres" id="2_bef6s"]
[ext_resource type="PackedScene" uid="uid://c16i1gmg6yu5a" path="res://src/data_viewer/DataViewerRepository.tscn" id="3_ejdn0"]
[ext_resource type="Texture2D" uid="uid://djvga5kh0ncqa" path="res://src/map/dungeon/models/antechamber_1/ANTECHAMBER_TYPE1_VER2_8311.png" id="3_hpkd1"]
[ext_resource type="PackedScene" uid="uid://bjg8wyvp8q6oc" path="res://src/enemy/enemy_types/michael/MichaelModelView.tscn" id="4_bef6s"]
[ext_resource type="PackedScene" uid="uid://bli0t0d6ommvi" path="res://src/enemy/enemy_types/sproingy/SproingyModelView.tscn" id="5_hpkd1"]
[ext_resource type="PackedScene" uid="uid://bjg8wyvp8q6oc" path="res://src/enemy/enemy_types/2. michael/MichaelModelView.tscn" id="4_bef6s"]
[ext_resource type="PackedScene" uid="uid://bli0t0d6ommvi" path="res://src/enemy/enemy_types/1. sproingy/SproingyModelView.tscn" id="5_hpkd1"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_dvixg"]
albedo_texture = ExtResource("3_hpkd1")

View File

@@ -1,8 +1,8 @@
[gd_scene load_steps=4 format=3 uid="uid://c16i1gmg6yu5a"]
[ext_resource type="Script" path="res://src/data_viewer/DataViewerRepository.cs" id="1_1cvot"]
[ext_resource type="PackedScene" uid="uid://bjg8wyvp8q6oc" path="res://src/enemy/enemy_types/michael/MichaelModelView.tscn" id="2_8autu"]
[ext_resource type="PackedScene" uid="uid://bli0t0d6ommvi" path="res://src/enemy/enemy_types/sproingy/SproingyModelView.tscn" id="3_0bpmu"]
[ext_resource type="Script" uid="uid://03k48fke03vu" path="res://src/data_viewer/DataViewerRepository.cs" id="1_1cvot"]
[ext_resource type="PackedScene" uid="uid://bjg8wyvp8q6oc" path="res://src/enemy/enemy_types/2. michael/MichaelModelView.tscn" id="2_8autu"]
[ext_resource type="PackedScene" uid="uid://bli0t0d6ommvi" path="res://src/enemy/enemy_types/1. sproingy/SproingyModelView.tscn" id="3_0bpmu"]
[node name="DataViewerRepository" type="Node"]
script = ExtResource("1_1cvot")

View File

@@ -11,7 +11,7 @@ public partial class Enemy : RigidBody3D, IEnemy, IProvide<IEnemyLogic>
#region Registration
public override void _Notification(int what) => this.Notify(what);
private IEnemyLogic _enemyLogic { get; set; } = default!;
protected IEnemyLogic _enemyLogic { get; set; } = default!;
IEnemyLogic IProvide<IEnemyLogic>.Value() => _enemyLogic;
@@ -22,7 +22,7 @@ public partial class Enemy : RigidBody3D, IEnemy, IProvide<IEnemyLogic>
[Dependency] IGameEventDepot GameEventDepot => this.DependOn<IGameEventDepot>();
[Dependency] IPlayer Player => this.DependOn<IPlayer>();
[Dependency] protected IPlayer Player => this.DependOn<IPlayer>();
#endregion
#region Exports
@@ -158,18 +158,6 @@ public partial class Enemy : RigidBody3D, IEnemy, IProvide<IEnemyLogic>
PatrolTimer.WaitTime = rng.RandfRange(5.0f, 10.0f);
}
public void OnPhysicsProcess(double delta)
{
_enemyLogic.Input(new EnemyLogic.Input.PhysicsTick(delta));
if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) < 2.5f)
_enemyLogic.Input(new EnemyLogic.Input.StartAttacking());
if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) > 45f)
_enemyLogic.Input(new EnemyLogic.Input.LostPlayer());
if (_enemyLogic.Value is EnemyLogic.State.Attacking && GlobalPosition.DistanceTo(Player.CurrentPosition) > 2.5f)
_enemyLogic.Input(new EnemyLogic.Input.Alerted());
}
public void StartAttackTimer()
{
AttackTimer.Timeout += OnAttackTimeout;

View File

@@ -1,8 +1,8 @@
[gd_scene load_steps=4 format=3 uid="uid://dbvr8ewajja6a"]
[ext_resource type="Script" uid="uid://cp02ufnj6c7kg" path="res://src/enemy/EnemyDatabase.cs" id="1_ywy58"]
[ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/michael/Michael.tscn" id="2_tja3j"]
[ext_resource type="PackedScene" uid="uid://bksq62muhk3h5" path="res://src/enemy/enemy_types/sproingy/Sproingy.tscn" id="3_cpupr"]
[ext_resource type="PackedScene" uid="uid://b0gwivt7cw7nd" path="res://src/enemy/enemy_types/2. michael/Michael.tscn" id="2_tja3j"]
[ext_resource type="PackedScene" uid="uid://bksq62muhk3h5" path="res://src/enemy/enemy_types/1. sproingy/Sproingy.tscn" id="3_cpupr"]
[node name="EnemyDatabase" type="Node"]
script = ExtResource("1_ywy58")

View File

@@ -20,6 +20,18 @@ public partial class Sproingy : Enemy, IHasPrimaryAttack
EnemyModelView.Hitbox.AreaEntered += Hitbox_AreaEntered;
}
public void OnPhysicsProcess(double delta)
{
_enemyLogic.Input(new EnemyLogic.Input.PhysicsTick(delta));
if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) < 2.5f)
_enemyLogic.Input(new EnemyLogic.Input.StartAttacking());
if (_enemyLogic.Value is EnemyLogic.State.FollowPlayer && GlobalPosition.DistanceTo(Player.CurrentPosition) > 45f)
_enemyLogic.Input(new EnemyLogic.Input.LostPlayer());
if (_enemyLogic.Value is EnemyLogic.State.Attacking && GlobalPosition.DistanceTo(Player.CurrentPosition) > 2.5f)
_enemyLogic.Input(new EnemyLogic.Input.Alerted());
}
public override void TakeAction()
{
PrimaryAttack();

View File

@@ -1,8 +1,8 @@
[gd_scene load_steps=8 format=3 uid="uid://bksq62muhk3h5"]
[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/sproingy/Sproingy.cs" id="1_ldo22"]
[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/1. sproingy/Sproingy.cs" id="1_ldo22"]
[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_8vcnq"]
[ext_resource type="PackedScene" uid="uid://bli0t0d6ommvi" path="res://src/enemy/enemy_types/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"]
script = ExtResource("2_8vcnq")

View File

@@ -1,62 +1,62 @@
[gd_scene load_steps=122 format=3 uid="uid://bli0t0d6ommvi"]
[ext_resource type="Script" uid="uid://chymnqdw7hibn" path="res://src/enemy/EnemyModelView.cs" id="1_0vbio"]
[ext_resource type="Texture2D" uid="uid://dd0ia6isdqg61" path="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 1.png" id="1_pbx41"]
[ext_resource type="Texture2D" uid="uid://bs4ico5ouo5d3" path="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 2.png" id="2_0vbio"]
[ext_resource type="Resource" uid="uid://bctxs1jlkhgmc" path="res://src/enemy/enemy_types/sproingy/SproingyLoreInfo.tres" id="2_53wuj"]
[ext_resource type="Texture2D" uid="uid://85ki5mc4h0vs" path="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 3.png" id="3_lae8t"]
[ext_resource type="Texture2D" uid="uid://bwt1m2frb3r0e" path="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 4.png" id="4_53wuj"]
[ext_resource type="Texture2D" uid="uid://ckssl1np6vnlu" path="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 5.png" id="5_d5bmw"]
[ext_resource type="Texture2D" uid="uid://c4sqc6i3xcfac" path="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 6.png" id="6_fpvxl"]
[ext_resource type="Texture2D" uid="uid://cawexe4wkosc8" path="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 7.png" id="7_qq0ru"]
[ext_resource type="Texture2D" uid="uid://d0j1vrx7xdnxl" path="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 8.png" id="8_c54uj"]
[ext_resource type="Texture2D" uid="uid://d0qhndaukki7c" path="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 9.png" id="9_qmo72"]
[ext_resource type="Texture2D" uid="uid://cnd08q34wa7ww" path="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 10.png" id="10_jyt1n"]
[ext_resource type="Texture2D" uid="uid://b8ntr7hh6rr5h" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 1.png" id="11_5un2v"]
[ext_resource type="Texture2D" uid="uid://csgthlou2tnvb" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 2.png" id="12_2x3nl"]
[ext_resource type="Texture2D" uid="uid://cfyxuk85350gn" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 3.png" id="13_6a5nw"]
[ext_resource type="Texture2D" uid="uid://dufdb5gc0gfkr" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 4.png" id="14_0jqty"]
[ext_resource type="Texture2D" uid="uid://buu4btd3adrr4" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 5.png" id="15_yjcrh"]
[ext_resource type="Texture2D" uid="uid://ddgctjau0dnmh" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 6.png" id="16_2ybyh"]
[ext_resource type="Texture2D" uid="uid://2jwaacvarrha" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 7.png" id="17_n454k"]
[ext_resource type="Texture2D" uid="uid://8837jm7f78uo" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 8.png" id="18_vrcjv"]
[ext_resource type="Texture2D" uid="uid://devt1gmwduo5h" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 9.png" id="19_h1yxw"]
[ext_resource type="Texture2D" uid="uid://cj3m4eyagiye6" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 10.png" id="20_kg6hd"]
[ext_resource type="Texture2D" uid="uid://cyigr4eip1mxt" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 11.png" id="21_25i3y"]
[ext_resource type="Texture2D" uid="uid://kavqjxq17m0p" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 12.png" id="22_5g722"]
[ext_resource type="Texture2D" uid="uid://bcce7b4wp6a4v" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 13.png" id="23_a6y4x"]
[ext_resource type="Texture2D" uid="uid://doiu8sug4t8ki" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 14.png" id="24_7y7m4"]
[ext_resource type="Texture2D" uid="uid://dqymhvgu03xpl" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 15.png" id="25_ldcvv"]
[ext_resource type="Texture2D" uid="uid://cjk1vjjk3gnjl" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 1.png" id="26_aalmk"]
[ext_resource type="Texture2D" uid="uid://1nv7dlxcqlia" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 2.png" id="27_2le5t"]
[ext_resource type="Texture2D" uid="uid://bniq2b1phbjk5" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 3.png" id="28_4nmgu"]
[ext_resource type="Texture2D" uid="uid://ba846rlx4phr2" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 4.png" id="29_mw5r6"]
[ext_resource type="Texture2D" uid="uid://b76dai3g8nh2a" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 5.png" id="30_jbtxi"]
[ext_resource type="Texture2D" uid="uid://wqec5p5xahew" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 6.png" id="31_mjxlk"]
[ext_resource type="Texture2D" uid="uid://sl7fel3muw2y" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 7.png" id="32_al2xs"]
[ext_resource type="Texture2D" uid="uid://cucixinggd5s2" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 8.png" id="33_afa0q"]
[ext_resource type="Texture2D" uid="uid://ccn6vymd07kd2" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 9.png" id="34_irq32"]
[ext_resource type="Texture2D" uid="uid://b7jqturu5jm2c" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 10.png" id="35_2khaq"]
[ext_resource type="Texture2D" uid="uid://c1m065dts364p" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 11.png" id="36_k7x0x"]
[ext_resource type="Texture2D" uid="uid://qsm43ovrbr7m" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 12.png" id="37_noc6c"]
[ext_resource type="Texture2D" uid="uid://bslsx7k6aa4tf" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 13.png" id="38_tfygr"]
[ext_resource type="Texture2D" uid="uid://cefke0gsokfi1" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 14.png" id="39_fpoao"]
[ext_resource type="Texture2D" uid="uid://blmpd2lu84ppt" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 15.png" id="40_s4c8e"]
[ext_resource type="Texture2D" uid="uid://kwaf2jj5oyu4" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 1.png" id="41_d3ufd"]
[ext_resource type="Texture2D" uid="uid://ul0q834bwd6" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 2.png" id="42_ap0nr"]
[ext_resource type="Texture2D" uid="uid://bpohl3uqutcyb" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 3.png" id="43_snwjc"]
[ext_resource type="Texture2D" uid="uid://dlbt7lj5ryl0v" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 4.png" id="44_wba7a"]
[ext_resource type="Texture2D" uid="uid://bkhn4ck7bx6tt" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 5.png" id="45_v1iqd"]
[ext_resource type="Texture2D" uid="uid://c8uw6qdsi1720" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 6.png" id="46_mylxl"]
[ext_resource type="Texture2D" uid="uid://cnoouhy7p3gi3" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 7.png" id="47_gg0cg"]
[ext_resource type="Texture2D" uid="uid://b1xldymngql00" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 8.png" id="48_33r3i"]
[ext_resource type="Texture2D" uid="uid://btuxhmmb6ikvf" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 9.png" id="49_r4mim"]
[ext_resource type="Texture2D" uid="uid://dlrn3cbdubg5s" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 10.png" id="50_r2i8l"]
[ext_resource type="Texture2D" uid="uid://oukshrxpgscg" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 11.png" id="51_xbv86"]
[ext_resource type="Texture2D" uid="uid://buk3stdgcg44w" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 12.png" id="52_rtp20"]
[ext_resource type="Texture2D" uid="uid://b3gndmrlrvexy" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 13.png" id="53_nr2vc"]
[ext_resource type="Texture2D" uid="uid://b1cmx8l4ia3fv" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 14.png" id="54_jdvn0"]
[ext_resource type="Texture2D" uid="uid://c7t4626rox02s" path="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 15.png" id="55_2eqor"]
[ext_resource type="Texture2D" uid="uid://dd0ia6isdqg61" path="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 1.png" id="1_pbx41"]
[ext_resource type="Texture2D" uid="uid://bs4ico5ouo5d3" path="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 2.png" id="2_0vbio"]
[ext_resource type="Resource" uid="uid://bctxs1jlkhgmc" path="res://src/enemy/enemy_types/1. sproingy/SproingyLoreInfo.tres" id="2_53wuj"]
[ext_resource type="Texture2D" uid="uid://85ki5mc4h0vs" path="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 3.png" id="3_lae8t"]
[ext_resource type="Texture2D" uid="uid://bwt1m2frb3r0e" path="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 4.png" id="4_53wuj"]
[ext_resource type="Texture2D" uid="uid://ckssl1np6vnlu" path="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 5.png" id="5_d5bmw"]
[ext_resource type="Texture2D" uid="uid://c4sqc6i3xcfac" path="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 6.png" id="6_fpvxl"]
[ext_resource type="Texture2D" uid="uid://cawexe4wkosc8" path="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 7.png" id="7_qq0ru"]
[ext_resource type="Texture2D" uid="uid://d0j1vrx7xdnxl" path="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 8.png" id="8_c54uj"]
[ext_resource type="Texture2D" uid="uid://d0qhndaukki7c" path="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 9.png" id="9_qmo72"]
[ext_resource type="Texture2D" uid="uid://cnd08q34wa7ww" path="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 10.png" id="10_jyt1n"]
[ext_resource type="Texture2D" uid="uid://b8ntr7hh6rr5h" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 1.png" id="11_5un2v"]
[ext_resource type="Texture2D" uid="uid://csgthlou2tnvb" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 2.png" id="12_2x3nl"]
[ext_resource type="Texture2D" uid="uid://cfyxuk85350gn" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 3.png" id="13_6a5nw"]
[ext_resource type="Texture2D" uid="uid://dufdb5gc0gfkr" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 4.png" id="14_0jqty"]
[ext_resource type="Texture2D" uid="uid://buu4btd3adrr4" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 5.png" id="15_yjcrh"]
[ext_resource type="Texture2D" uid="uid://ddgctjau0dnmh" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 6.png" id="16_2ybyh"]
[ext_resource type="Texture2D" uid="uid://2jwaacvarrha" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 7.png" id="17_n454k"]
[ext_resource type="Texture2D" uid="uid://8837jm7f78uo" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 8.png" id="18_vrcjv"]
[ext_resource type="Texture2D" uid="uid://devt1gmwduo5h" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 9.png" id="19_h1yxw"]
[ext_resource type="Texture2D" uid="uid://cj3m4eyagiye6" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 10.png" id="20_kg6hd"]
[ext_resource type="Texture2D" uid="uid://cyigr4eip1mxt" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 11.png" id="21_25i3y"]
[ext_resource type="Texture2D" uid="uid://kavqjxq17m0p" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 12.png" id="22_5g722"]
[ext_resource type="Texture2D" uid="uid://bcce7b4wp6a4v" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 13.png" id="23_a6y4x"]
[ext_resource type="Texture2D" uid="uid://doiu8sug4t8ki" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 14.png" id="24_7y7m4"]
[ext_resource type="Texture2D" uid="uid://dqymhvgu03xpl" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 15.png" id="25_ldcvv"]
[ext_resource type="Texture2D" uid="uid://cjk1vjjk3gnjl" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 1.png" id="26_aalmk"]
[ext_resource type="Texture2D" uid="uid://1nv7dlxcqlia" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 2.png" id="27_2le5t"]
[ext_resource type="Texture2D" uid="uid://bniq2b1phbjk5" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 3.png" id="28_4nmgu"]
[ext_resource type="Texture2D" uid="uid://ba846rlx4phr2" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 4.png" id="29_mw5r6"]
[ext_resource type="Texture2D" uid="uid://b76dai3g8nh2a" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 5.png" id="30_jbtxi"]
[ext_resource type="Texture2D" uid="uid://wqec5p5xahew" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 6.png" id="31_mjxlk"]
[ext_resource type="Texture2D" uid="uid://sl7fel3muw2y" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 7.png" id="32_al2xs"]
[ext_resource type="Texture2D" uid="uid://cucixinggd5s2" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 8.png" id="33_afa0q"]
[ext_resource type="Texture2D" uid="uid://ccn6vymd07kd2" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 9.png" id="34_irq32"]
[ext_resource type="Texture2D" uid="uid://b7jqturu5jm2c" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 10.png" id="35_2khaq"]
[ext_resource type="Texture2D" uid="uid://c1m065dts364p" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 11.png" id="36_k7x0x"]
[ext_resource type="Texture2D" uid="uid://qsm43ovrbr7m" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 12.png" id="37_noc6c"]
[ext_resource type="Texture2D" uid="uid://bslsx7k6aa4tf" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 13.png" id="38_tfygr"]
[ext_resource type="Texture2D" uid="uid://cefke0gsokfi1" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 14.png" id="39_fpoao"]
[ext_resource type="Texture2D" uid="uid://blmpd2lu84ppt" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 15.png" id="40_s4c8e"]
[ext_resource type="Texture2D" uid="uid://kwaf2jj5oyu4" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 1.png" id="41_d3ufd"]
[ext_resource type="Texture2D" uid="uid://ul0q834bwd6" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 2.png" id="42_ap0nr"]
[ext_resource type="Texture2D" uid="uid://bpohl3uqutcyb" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 3.png" id="43_snwjc"]
[ext_resource type="Texture2D" uid="uid://dlbt7lj5ryl0v" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 4.png" id="44_wba7a"]
[ext_resource type="Texture2D" uid="uid://bkhn4ck7bx6tt" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 5.png" id="45_v1iqd"]
[ext_resource type="Texture2D" uid="uid://c8uw6qdsi1720" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 6.png" id="46_mylxl"]
[ext_resource type="Texture2D" uid="uid://cnoouhy7p3gi3" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 7.png" id="47_gg0cg"]
[ext_resource type="Texture2D" uid="uid://b1xldymngql00" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 8.png" id="48_33r3i"]
[ext_resource type="Texture2D" uid="uid://btuxhmmb6ikvf" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 9.png" id="49_r4mim"]
[ext_resource type="Texture2D" uid="uid://dlrn3cbdubg5s" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 10.png" id="50_r2i8l"]
[ext_resource type="Texture2D" uid="uid://oukshrxpgscg" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 11.png" id="51_xbv86"]
[ext_resource type="Texture2D" uid="uid://buk3stdgcg44w" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 12.png" id="52_rtp20"]
[ext_resource type="Texture2D" uid="uid://b3gndmrlrvexy" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 13.png" id="53_nr2vc"]
[ext_resource type="Texture2D" uid="uid://b1cmx8l4ia3fv" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 14.png" id="54_jdvn0"]
[ext_resource type="Texture2D" uid="uid://c7t4626rox02s" path="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 15.png" id="55_2eqor"]
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="57_lae8t"]
[sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"]

View File

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dd0ia6isdqg61"
path="res://.godot/imported/Layer 1.png-521488e2981980d6108595175f474a00.ctex"
path="res://.godot/imported/Layer 1.png-5b9fe66235ef77b00745deff3625b602.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 1.png"
dest_files=["res://.godot/imported/Layer 1.png-521488e2981980d6108595175f474a00.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 1.png"
dest_files=["res://.godot/imported/Layer 1.png-5b9fe66235ef77b00745deff3625b602.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cnd08q34wa7ww"
path="res://.godot/imported/Layer 10.png-c175c66a28a6cd1f5b29ce6b0800367f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 10.png"
dest_files=["res://.godot/imported/Layer 10.png-c175c66a28a6cd1f5b29ce6b0800367f.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

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -2,16 +2,16 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://hrfolktssvrp"
path="res://.godot/imported/1.png-85b200b30201dcd029bb619e800ec143.ctex"
uid="uid://bs4ico5ouo5d3"
path="res://.godot/imported/Layer 2.png-81868ef3cdd23bde0e487d9ef0938e0b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/ballos/WALK FRONT/1.png"
dest_files=["res://.godot/imported/1.png-85b200b30201dcd029bb619e800ec143.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 2.png"
dest_files=["res://.godot/imported/Layer 2.png-81868ef3cdd23bde0e487d9ef0938e0b.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://85ki5mc4h0vs"
path="res://.godot/imported/Layer 3.png-8dc966aaab1b729663b8baef3dcef46b.ctex"
path="res://.godot/imported/Layer 3.png-ddb98d9b5346cb4de4ba5ce0ab332f74.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 3.png"
dest_files=["res://.godot/imported/Layer 3.png-8dc966aaab1b729663b8baef3dcef46b.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 3.png"
dest_files=["res://.godot/imported/Layer 3.png-ddb98d9b5346cb4de4ba5ce0ab332f74.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bwt1m2frb3r0e"
path="res://.godot/imported/Layer 4.png-c78fd68a7af43c1e5b40946d86906b5b.ctex"
path="res://.godot/imported/Layer 4.png-8435898b081e57af61cf1c1aa776d9e7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 4.png"
dest_files=["res://.godot/imported/Layer 4.png-c78fd68a7af43c1e5b40946d86906b5b.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 4.png"
dest_files=["res://.godot/imported/Layer 4.png-8435898b081e57af61cf1c1aa776d9e7.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ckssl1np6vnlu"
path="res://.godot/imported/Layer 5.png-83f557ff78cc1d8d55af6b1ddbe8da14.ctex"
path="res://.godot/imported/Layer 5.png-2239cf447db71740a2613f7ceaae85c2.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 5.png"
dest_files=["res://.godot/imported/Layer 5.png-83f557ff78cc1d8d55af6b1ddbe8da14.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 5.png"
dest_files=["res://.godot/imported/Layer 5.png-2239cf447db71740a2613f7ceaae85c2.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://c4sqc6i3xcfac"
path="res://.godot/imported/Layer 6.png-f5114089f50c5ef6b917af3364aa5ab8.ctex"
path="res://.godot/imported/Layer 6.png-caea54bf0971b2b1feac3472facfd241.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 6.png"
dest_files=["res://.godot/imported/Layer 6.png-f5114089f50c5ef6b917af3364aa5ab8.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 6.png"
dest_files=["res://.godot/imported/Layer 6.png-caea54bf0971b2b1feac3472facfd241.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cawexe4wkosc8"
path="res://.godot/imported/Layer 7.png-0c317eb38ebe16b2dce4d7a52a093b67.ctex"
path="res://.godot/imported/Layer 7.png-5fe0455b76c0cf1128699c0f6b058aff.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 7.png"
dest_files=["res://.godot/imported/Layer 7.png-0c317eb38ebe16b2dce4d7a52a093b67.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 7.png"
dest_files=["res://.godot/imported/Layer 7.png-5fe0455b76c0cf1128699c0f6b058aff.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://d0j1vrx7xdnxl"
path="res://.godot/imported/Layer 8.png-7ccc1d3aaf1bdb7f529f66e24660db82.ctex"
path="res://.godot/imported/Layer 8.png-f7fb26baec479643d61259af33d78eb1.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 8.png"
dest_files=["res://.godot/imported/Layer 8.png-7ccc1d3aaf1bdb7f529f66e24660db82.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 8.png"
dest_files=["res://.godot/imported/Layer 8.png-f7fb26baec479643d61259af33d78eb1.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://d0qhndaukki7c"
path="res://.godot/imported/Layer 9.png-593601bab9e4efa1ea278036b763aeb4.ctex"
path="res://.godot/imported/Layer 9.png-dec39fd87ec117cd8cb03aa4e6494af8.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/ATTACK/Layer 9.png"
dest_files=["res://.godot/imported/Layer 9.png-593601bab9e4efa1ea278036b763aeb4.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/ATTACK/Layer 9.png"
dest_files=["res://.godot/imported/Layer 9.png-dec39fd87ec117cd8cb03aa4e6494af8.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b8ntr7hh6rr5h"
path="res://.godot/imported/Layer 1.png-06ec0ba0ece7d62f363120db16f05aca.ctex"
path="res://.godot/imported/Layer 1.png-60d7fdbbac434630cf32e9a0aab33fa3.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 1.png"
dest_files=["res://.godot/imported/Layer 1.png-06ec0ba0ece7d62f363120db16f05aca.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 1.png"
dest_files=["res://.godot/imported/Layer 1.png-60d7fdbbac434630cf32e9a0aab33fa3.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cj3m4eyagiye6"
path="res://.godot/imported/Layer 10.png-6c9076d4b98496c7b8b2c37ff085329b.ctex"
path="res://.godot/imported/Layer 10.png-ae95b6e132950c357a13d945d6249aff.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 10.png"
dest_files=["res://.godot/imported/Layer 10.png-6c9076d4b98496c7b8b2c37ff085329b.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 10.png"
dest_files=["res://.godot/imported/Layer 10.png-ae95b6e132950c357a13d945d6249aff.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cyigr4eip1mxt"
path="res://.godot/imported/Layer 11.png-7119ff942f22fbfc1d2aad82cee71eeb.ctex"
path="res://.godot/imported/Layer 11.png-1e36e7ed97ee937b1b65866da3da8cf4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 11.png"
dest_files=["res://.godot/imported/Layer 11.png-7119ff942f22fbfc1d2aad82cee71eeb.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 11.png"
dest_files=["res://.godot/imported/Layer 11.png-1e36e7ed97ee937b1b65866da3da8cf4.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://kavqjxq17m0p"
path="res://.godot/imported/Layer 12.png-ab805d40b167e6e8ab5b51c0ebfb2c83.ctex"
path="res://.godot/imported/Layer 12.png-5cc25f739d71b51d0d03067c83a31ffb.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 12.png"
dest_files=["res://.godot/imported/Layer 12.png-ab805d40b167e6e8ab5b51c0ebfb2c83.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 12.png"
dest_files=["res://.godot/imported/Layer 12.png-5cc25f739d71b51d0d03067c83a31ffb.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bcce7b4wp6a4v"
path="res://.godot/imported/Layer 13.png-138c1ee9c9a61b2651f16131077baac4.ctex"
path="res://.godot/imported/Layer 13.png-039b76ac83350c62c5d491299b2cd4e7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 13.png"
dest_files=["res://.godot/imported/Layer 13.png-138c1ee9c9a61b2651f16131077baac4.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 13.png"
dest_files=["res://.godot/imported/Layer 13.png-039b76ac83350c62c5d491299b2cd4e7.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://doiu8sug4t8ki"
path="res://.godot/imported/Layer 14.png-1582e6934fd63e077fa28a2458218f88.ctex"
path="res://.godot/imported/Layer 14.png-2fa8256307e46de387b692a4c87e94f9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 14.png"
dest_files=["res://.godot/imported/Layer 14.png-1582e6934fd63e077fa28a2458218f88.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 14.png"
dest_files=["res://.godot/imported/Layer 14.png-2fa8256307e46de387b692a4c87e94f9.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dqymhvgu03xpl"
path="res://.godot/imported/Layer 15.png-713336816e66d60e49aa1c84357a7723.ctex"
path="res://.godot/imported/Layer 15.png-3ed5689c3217d3740c4d735b5c3d33f7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 15.png"
dest_files=["res://.godot/imported/Layer 15.png-713336816e66d60e49aa1c84357a7723.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 15.png"
dest_files=["res://.godot/imported/Layer 15.png-3ed5689c3217d3740c4d735b5c3d33f7.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://csgthlou2tnvb"
path="res://.godot/imported/Layer 2.png-b87bacaa017c1a6cbdc598aefb6fef9c.ctex"
path="res://.godot/imported/Layer 2.png-148b13578b66a152f67257601e69749b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 2.png"
dest_files=["res://.godot/imported/Layer 2.png-b87bacaa017c1a6cbdc598aefb6fef9c.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 2.png"
dest_files=["res://.godot/imported/Layer 2.png-148b13578b66a152f67257601e69749b.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cfyxuk85350gn"
path="res://.godot/imported/Layer 3.png-9812bf7ea783fe5d2ac1a4d922aea429.ctex"
path="res://.godot/imported/Layer 3.png-03bc4d180da3f3a5dec81643f529245b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 3.png"
dest_files=["res://.godot/imported/Layer 3.png-9812bf7ea783fe5d2ac1a4d922aea429.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 3.png"
dest_files=["res://.godot/imported/Layer 3.png-03bc4d180da3f3a5dec81643f529245b.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dufdb5gc0gfkr"
path="res://.godot/imported/Layer 4.png-7786def2c522187ff2c885c2b7fa4fa8.ctex"
path="res://.godot/imported/Layer 4.png-127401bbc96da77eb91c82d6aae30cd7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 4.png"
dest_files=["res://.godot/imported/Layer 4.png-7786def2c522187ff2c885c2b7fa4fa8.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 4.png"
dest_files=["res://.godot/imported/Layer 4.png-127401bbc96da77eb91c82d6aae30cd7.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://buu4btd3adrr4"
path="res://.godot/imported/Layer 5.png-b1ec1dd46edfb27541dcd13675a0cf26.ctex"
path="res://.godot/imported/Layer 5.png-3a161158dc6fd41d5a9db942dfafccfd.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 5.png"
dest_files=["res://.godot/imported/Layer 5.png-b1ec1dd46edfb27541dcd13675a0cf26.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 5.png"
dest_files=["res://.godot/imported/Layer 5.png-3a161158dc6fd41d5a9db942dfafccfd.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ddgctjau0dnmh"
path="res://.godot/imported/Layer 6.png-e337826ac7f25ddc88d244b3e7295388.ctex"
path="res://.godot/imported/Layer 6.png-9c8bcdbce8670a62871a8ebf12db69dc.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 6.png"
dest_files=["res://.godot/imported/Layer 6.png-e337826ac7f25ddc88d244b3e7295388.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 6.png"
dest_files=["res://.godot/imported/Layer 6.png-9c8bcdbce8670a62871a8ebf12db69dc.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://2jwaacvarrha"
path="res://.godot/imported/Layer 7.png-17cc4bc659966f33fc747dc75092ba7e.ctex"
path="res://.godot/imported/Layer 7.png-eff930047da751da9f216d75ff8e4b56.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 7.png"
dest_files=["res://.godot/imported/Layer 7.png-17cc4bc659966f33fc747dc75092ba7e.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 7.png"
dest_files=["res://.godot/imported/Layer 7.png-eff930047da751da9f216d75ff8e4b56.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://8837jm7f78uo"
path="res://.godot/imported/Layer 8.png-88cc73be9cad8f9d2bcb7abb091d5b34.ctex"
path="res://.godot/imported/Layer 8.png-38696d7852cdcceb3457b0022e66e26b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 8.png"
dest_files=["res://.godot/imported/Layer 8.png-88cc73be9cad8f9d2bcb7abb091d5b34.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 8.png"
dest_files=["res://.godot/imported/Layer 8.png-38696d7852cdcceb3457b0022e66e26b.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://devt1gmwduo5h"
path="res://.godot/imported/Layer 9.png-f6c1889d1d80424625c1ad6922f235c8.ctex"
path="res://.godot/imported/Layer 9.png-aa787b39f1b4576b4a1d0ccd255d81c8.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_BACK/Layer 9.png"
dest_files=["res://.godot/imported/Layer 9.png-f6c1889d1d80424625c1ad6922f235c8.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_BACK/Layer 9.png"
dest_files=["res://.godot/imported/Layer 9.png-aa787b39f1b4576b4a1d0ccd255d81c8.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cjk1vjjk3gnjl"
path="res://.godot/imported/Layer 1.png-df1f00ee255ecc0c46cb16ad96e31ec9.ctex"
path="res://.godot/imported/Layer 1.png-3d480eb3614fc3acfd090150b6daad83.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 1.png"
dest_files=["res://.godot/imported/Layer 1.png-df1f00ee255ecc0c46cb16ad96e31ec9.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 1.png"
dest_files=["res://.godot/imported/Layer 1.png-3d480eb3614fc3acfd090150b6daad83.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b7jqturu5jm2c"
path="res://.godot/imported/Layer 10.png-3405ae0109645637da38f6bfd0b59b89.ctex"
path="res://.godot/imported/Layer 10.png-938b9ce83355463a9d90e83c1030dec4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 10.png"
dest_files=["res://.godot/imported/Layer 10.png-3405ae0109645637da38f6bfd0b59b89.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 10.png"
dest_files=["res://.godot/imported/Layer 10.png-938b9ce83355463a9d90e83c1030dec4.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://c1m065dts364p"
path="res://.godot/imported/Layer 11.png-6827b8d6ebbb16f55e929f5a47d445ee.ctex"
path="res://.godot/imported/Layer 11.png-ea5eb04ead813d69448bfbf4d3eea19f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 11.png"
dest_files=["res://.godot/imported/Layer 11.png-6827b8d6ebbb16f55e929f5a47d445ee.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 11.png"
dest_files=["res://.godot/imported/Layer 11.png-ea5eb04ead813d69448bfbf4d3eea19f.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://qsm43ovrbr7m"
path="res://.godot/imported/Layer 12.png-0d1d71824d5485f09b5e02c12454c4ff.ctex"
path="res://.godot/imported/Layer 12.png-8400acd03d2bed037f1171d02b7c06ab.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 12.png"
dest_files=["res://.godot/imported/Layer 12.png-0d1d71824d5485f09b5e02c12454c4ff.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 12.png"
dest_files=["res://.godot/imported/Layer 12.png-8400acd03d2bed037f1171d02b7c06ab.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bslsx7k6aa4tf"
path="res://.godot/imported/Layer 13.png-d23d237dcbbecee620a7ebe70de4b590.ctex"
path="res://.godot/imported/Layer 13.png-3db0976880b54ac956319b27aa1c55da.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 13.png"
dest_files=["res://.godot/imported/Layer 13.png-d23d237dcbbecee620a7ebe70de4b590.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 13.png"
dest_files=["res://.godot/imported/Layer 13.png-3db0976880b54ac956319b27aa1c55da.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cefke0gsokfi1"
path="res://.godot/imported/Layer 14.png-38937c880d3abadd1b3dd44de5b4d903.ctex"
path="res://.godot/imported/Layer 14.png-93f662eb1bb7b5769d7a973534acc7c0.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 14.png"
dest_files=["res://.godot/imported/Layer 14.png-38937c880d3abadd1b3dd44de5b4d903.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 14.png"
dest_files=["res://.godot/imported/Layer 14.png-93f662eb1bb7b5769d7a973534acc7c0.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://blmpd2lu84ppt"
path="res://.godot/imported/Layer 15.png-e6e5735dd25125ebaad2a84d6fdbd630.ctex"
path="res://.godot/imported/Layer 15.png-81773cfcee2d00e9bd21897aa90f0c95.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 15.png"
dest_files=["res://.godot/imported/Layer 15.png-e6e5735dd25125ebaad2a84d6fdbd630.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 15.png"
dest_files=["res://.godot/imported/Layer 15.png-81773cfcee2d00e9bd21897aa90f0c95.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://1nv7dlxcqlia"
path="res://.godot/imported/Layer 2.png-b217853a3e40b51bd55e87f75455fa50.ctex"
path="res://.godot/imported/Layer 2.png-50bc09237ea069ae5ec832b8fc175c65.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 2.png"
dest_files=["res://.godot/imported/Layer 2.png-b217853a3e40b51bd55e87f75455fa50.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 2.png"
dest_files=["res://.godot/imported/Layer 2.png-50bc09237ea069ae5ec832b8fc175c65.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bniq2b1phbjk5"
path="res://.godot/imported/Layer 3.png-551ed4b593cde11988dbac15db119b72.ctex"
path="res://.godot/imported/Layer 3.png-694bf1d166b4939b08cd6ffeefad8ac4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 3.png"
dest_files=["res://.godot/imported/Layer 3.png-551ed4b593cde11988dbac15db119b72.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 3.png"
dest_files=["res://.godot/imported/Layer 3.png-694bf1d166b4939b08cd6ffeefad8ac4.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ba846rlx4phr2"
path="res://.godot/imported/Layer 4.png-1adfa7dde96edfaae61d054ebbff3494.ctex"
path="res://.godot/imported/Layer 4.png-290810013ad37018643ae3bef23de34e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 4.png"
dest_files=["res://.godot/imported/Layer 4.png-1adfa7dde96edfaae61d054ebbff3494.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 4.png"
dest_files=["res://.godot/imported/Layer 4.png-290810013ad37018643ae3bef23de34e.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b76dai3g8nh2a"
path="res://.godot/imported/Layer 5.png-ff71697f8fed4b71b01b6d3d61931248.ctex"
path="res://.godot/imported/Layer 5.png-5f868ec0ad17dd70a5de6e9df0a485da.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 5.png"
dest_files=["res://.godot/imported/Layer 5.png-ff71697f8fed4b71b01b6d3d61931248.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 5.png"
dest_files=["res://.godot/imported/Layer 5.png-5f868ec0ad17dd70a5de6e9df0a485da.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://wqec5p5xahew"
path="res://.godot/imported/Layer 6.png-4ff18425072e75d2d1d18270a6a987f1.ctex"
path="res://.godot/imported/Layer 6.png-fa02975097a390dea36b1907030cdf4a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 6.png"
dest_files=["res://.godot/imported/Layer 6.png-4ff18425072e75d2d1d18270a6a987f1.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 6.png"
dest_files=["res://.godot/imported/Layer 6.png-fa02975097a390dea36b1907030cdf4a.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://sl7fel3muw2y"
path="res://.godot/imported/Layer 7.png-26a1fe8c6dcd54865210bdcf02ef174f.ctex"
path="res://.godot/imported/Layer 7.png-6025f3f3cb810208b467730a0ff13479.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 7.png"
dest_files=["res://.godot/imported/Layer 7.png-26a1fe8c6dcd54865210bdcf02ef174f.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 7.png"
dest_files=["res://.godot/imported/Layer 7.png-6025f3f3cb810208b467730a0ff13479.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://cucixinggd5s2"
path="res://.godot/imported/Layer 8.png-9499c06e5162dadbdd3e29244a338a4f.ctex"
path="res://.godot/imported/Layer 8.png-160ee48274c19704cd27755ac72d5b72.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 8.png"
dest_files=["res://.godot/imported/Layer 8.png-9499c06e5162dadbdd3e29244a338a4f.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 8.png"
dest_files=["res://.godot/imported/Layer 8.png-160ee48274c19704cd27755ac72d5b72.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://ccn6vymd07kd2"
path="res://.godot/imported/Layer 9.png-a276e3c26f1b2ebc37312736b6a2cc3c.ctex"
path="res://.godot/imported/Layer 9.png-cee5c858b962389ee72d107cc4d93ae9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_FRONT/Layer 9.png"
dest_files=["res://.godot/imported/Layer 9.png-a276e3c26f1b2ebc37312736b6a2cc3c.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_FRONT/Layer 9.png"
dest_files=["res://.godot/imported/Layer 9.png-cee5c858b962389ee72d107cc4d93ae9.ctex"]
[params]

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://kwaf2jj5oyu4"
path="res://.godot/imported/Layer 1.png-0dbff1376dad432fa5f4793ff031fb7f.ctex"
path="res://.godot/imported/Layer 1.png-51cfa024dff8a9c92f31dbeab69ddbe4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 1.png"
dest_files=["res://.godot/imported/Layer 1.png-0dbff1376dad432fa5f4793ff031fb7f.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 1.png"
dest_files=["res://.godot/imported/Layer 1.png-51cfa024dff8a9c92f31dbeab69ddbe4.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dlrn3cbdubg5s"
path="res://.godot/imported/Layer 10.png-f07dcd0773761f4778047bf814fc05d3.ctex"
path="res://.godot/imported/Layer 10.png-1304f4f7701d3b06a1947197c1cad615.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 10.png"
dest_files=["res://.godot/imported/Layer 10.png-f07dcd0773761f4778047bf814fc05d3.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 10.png"
dest_files=["res://.godot/imported/Layer 10.png-1304f4f7701d3b06a1947197c1cad615.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://oukshrxpgscg"
path="res://.godot/imported/Layer 11.png-e6cc6e1b551f3aab32f9bc7627018186.ctex"
path="res://.godot/imported/Layer 11.png-fdb6502ab33e57adc5572048e9f9530d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 11.png"
dest_files=["res://.godot/imported/Layer 11.png-e6cc6e1b551f3aab32f9bc7627018186.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 11.png"
dest_files=["res://.godot/imported/Layer 11.png-fdb6502ab33e57adc5572048e9f9530d.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://buk3stdgcg44w"
path="res://.godot/imported/Layer 12.png-18894a57f832f11036fa988bfc624c80.ctex"
path="res://.godot/imported/Layer 12.png-fba4630fa7af5b9f7322ee9550fd549a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 12.png"
dest_files=["res://.godot/imported/Layer 12.png-18894a57f832f11036fa988bfc624c80.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 12.png"
dest_files=["res://.godot/imported/Layer 12.png-fba4630fa7af5b9f7322ee9550fd549a.ctex"]
[params]

View File

@@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://b3gndmrlrvexy"
path="res://.godot/imported/Layer 13.png-fb5ecb706a2decd8f7ba4d38ec63d8ab.ctex"
path="res://.godot/imported/Layer 13.png-574ee88db8a4f489a67e5ad50f429e22.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/enemy/enemy_types/sproingy/animations/IDLE_WALK_SIDE/Layer 13.png"
dest_files=["res://.godot/imported/Layer 13.png-fb5ecb706a2decd8f7ba4d38ec63d8ab.ctex"]
source_file="res://src/enemy/enemy_types/1. sproingy/animations/IDLE_WALK_SIDE/Layer 13.png"
dest_files=["res://.godot/imported/Layer 13.png-574ee88db8a4f489a67e5ad50f429e22.ctex"]
[params]

Some files were not shown because too many files have changed in this diff Show More