1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-08-18 14:05:06 +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')
{
// characterId = PlayState.instance.currentPlayerId;
characterId = 'bf';
characterId = PlayState.instance.currentPlayerId;
}
else
{

View file

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

View file

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