mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-01 12:24:27 +00:00
69 lines
1.3 KiB
Haxe
69 lines
1.3 KiB
Haxe
package;
|
|
|
|
import flixel.FlxSprite;
|
|
|
|
using StringTools;
|
|
|
|
class HealthIcon extends FlxSprite
|
|
{
|
|
/**
|
|
* Used for FreeplayState! If you use it elsewhere, prob gonna annoying
|
|
*/
|
|
public var sprTracker:FlxSprite;
|
|
|
|
var char:String = 'bf';
|
|
var isPlayer:Bool = false;
|
|
|
|
public function new(char:String = 'bf', isPlayer:Bool = false)
|
|
{
|
|
super();
|
|
|
|
this.isPlayer = isPlayer;
|
|
this.char = char;
|
|
|
|
loadIcon(char);
|
|
antialiasing = true;
|
|
scrollFactor.set();
|
|
}
|
|
|
|
public var isOldIcon:Bool = false;
|
|
|
|
public function swapOldIcon():Void
|
|
{
|
|
isOldIcon = !isOldIcon;
|
|
|
|
if (isOldIcon)
|
|
{
|
|
loadGraphic(Paths.image('icons/icon-bf-old'), true, 150, 150);
|
|
animation.add('bf-old', [0, 1], 0, false, isPlayer);
|
|
animation.play('bf-old');
|
|
}
|
|
else
|
|
loadIcon(char);
|
|
}
|
|
|
|
function loadIcon(char:String):Void
|
|
{
|
|
var realChar:String = "";
|
|
switch (char)
|
|
{
|
|
case 'bf-pixel':
|
|
realChar = char;
|
|
default:
|
|
realChar = char.split('-')[0].trim();
|
|
}
|
|
|
|
loadGraphic(Paths.image('icons/icon-' + realChar), true, 150, 150);
|
|
animation.add(realChar, [0, 1], 0, false, isPlayer);
|
|
animation.play(realChar);
|
|
}
|
|
|
|
override function update(elapsed:Float)
|
|
{
|
|
super.update(elapsed);
|
|
|
|
if (sprTracker != null)
|
|
setPosition(sprTracker.x + sprTracker.width + 10, sprTracker.y - 30);
|
|
}
|
|
}
|