mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
pixel icon shit in progress
This commit is contained in:
parent
e2fbf5a300
commit
94d805136c
1 changed files with 10 additions and 1 deletions
|
@ -46,11 +46,20 @@ class HealthIcon extends FlxSprite
|
|||
{
|
||||
if (animation.getByName(newChar) == null)
|
||||
{
|
||||
loadGraphic(Paths.image('icons/icon-' + newChar), true, 150, 150);
|
||||
var imgSize:Int = 150;
|
||||
|
||||
if (newChar.endsWith('pixel'))
|
||||
imgSize = 32;
|
||||
|
||||
loadGraphic(Paths.image('icons/icon-' + newChar), true, imgSize, imgSize);
|
||||
|
||||
animation.add(newChar, [0, 1], 0, false, isPlayer);
|
||||
}
|
||||
animation.play(newChar);
|
||||
char = newChar;
|
||||
|
||||
if (newChar.endsWith('pixel'))
|
||||
setGraphicSize(150, 150);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue