diff --git a/Arcade/Flixius/assets/images/hit.png b/Arcade/Flixius/assets/images/hit.png deleted file mode 100644 index 673afd2f6..000000000 Binary files a/Arcade/Flixius/assets/images/hit.png and /dev/null differ diff --git a/Arcade/Flixius/assets/images/hitEffect.png b/Arcade/Flixius/assets/images/hitEffect.png new file mode 100644 index 000000000..4711fe7d9 Binary files /dev/null and b/Arcade/Flixius/assets/images/hitEffect.png differ diff --git a/Arcade/Flixius/source/Hit.hx b/Arcade/Flixius/source/Hit.hx index 2e3650217..613cab663 100644 --- a/Arcade/Flixius/source/Hit.hx +++ b/Arcade/Flixius/source/Hit.hx @@ -12,7 +12,7 @@ class Hit extends FlxSprite public function new(P:Player) { super(0, 0); - loadGraphic(AssetPaths.hit__png, true, 9, 9); + loadGraphic(AssetPaths.hitEffect__png, true, 9, 9); animation.add("hit", [0, 1, 2], 12, false); _pos = FlxPoint.get(); _player = P;