1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-11 20:57:20 +00:00

Pixel fixes

This commit is contained in:
EliteMasterEric 2023-06-15 00:29:18 -04:00
parent 5729eb0413
commit 3c558ce192
3 changed files with 5 additions and 2 deletions

View file

@ -148,8 +148,7 @@ class HealthIcon extends FlxSprite
{ {
if (characterId == 'beta') if (characterId == 'beta')
{ {
// characterId = PlayState.instance.currentPlayerId; characterId = PlayState.instance.currentPlayerId;
characterId = 'bf';
} }
else else
{ {

View file

@ -56,10 +56,12 @@ class MultiSparrowCharacter extends BaseCharacter
if (_data.isPixel) if (_data.isPixel)
{ {
this.isPixel = true;
this.antialiasing = false; this.antialiasing = false;
} }
else else
{ {
this.isPixel = false;
this.antialiasing = true; this.antialiasing = true;
} }
} }

View file

@ -41,10 +41,12 @@ class PackerCharacter extends BaseCharacter
if (_data.isPixel) if (_data.isPixel)
{ {
this.isPixel = true;
this.antialiasing = false; this.antialiasing = false;
} }
else else
{ {
this.isPixel = false;
this.antialiasing = true; this.antialiasing = true;
} }