mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-27 01:55:52 -05:00
Pixel fixes
This commit is contained in:
parent
5729eb0413
commit
3c558ce192
3 changed files with 5 additions and 2 deletions
|
@ -148,8 +148,7 @@ class HealthIcon extends FlxSprite
|
|||
{
|
||||
if (characterId == 'beta')
|
||||
{
|
||||
// characterId = PlayState.instance.currentPlayerId;
|
||||
characterId = 'bf';
|
||||
characterId = PlayState.instance.currentPlayerId;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -56,10 +56,12 @@ class MultiSparrowCharacter extends BaseCharacter
|
|||
|
||||
if (_data.isPixel)
|
||||
{
|
||||
this.isPixel = true;
|
||||
this.antialiasing = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.isPixel = false;
|
||||
this.antialiasing = true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -41,10 +41,12 @@ class PackerCharacter extends BaseCharacter
|
|||
|
||||
if (_data.isPixel)
|
||||
{
|
||||
this.isPixel = true;
|
||||
this.antialiasing = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.isPixel = false;
|
||||
this.antialiasing = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue