mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-04 13:54:22 +00:00
Pixel fixes
This commit is contained in:
parent
5729eb0413
commit
3c558ce192
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue