mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-01 12:24:27 +00:00
44 lines
787 B
Haxe
44 lines
787 B
Haxe
package;
|
|
|
|
import flixel.FlxG;
|
|
import flixel.FlxSprite;
|
|
import flixel.graphics.frames.FlxAtlasFrames;
|
|
import flixel.util.FlxTimer;
|
|
|
|
using StringTools;
|
|
|
|
class Boyfriend extends Character
|
|
{
|
|
public var stunned:Bool = false;
|
|
|
|
public function new(x:Float, y:Float, ?char:String = 'bf')
|
|
{
|
|
super(x, y, char, true);
|
|
}
|
|
|
|
override function update(elapsed:Float)
|
|
{
|
|
if (!debugMode)
|
|
{
|
|
if (animation.curAnim.name.startsWith('sing'))
|
|
{
|
|
holdTimer += elapsed;
|
|
}
|
|
else
|
|
holdTimer = 0;
|
|
|
|
if (animation.curAnim.name.endsWith('miss') && animation.curAnim.finished && !debugMode)
|
|
{
|
|
playAnim('idle', true, false, 10);
|
|
}
|
|
|
|
if (animation.curAnim.name == 'firstDeath' && animation.curAnim.finished)
|
|
{
|
|
playAnim('deathLoop');
|
|
}
|
|
}
|
|
|
|
super.update(elapsed);
|
|
}
|
|
}
|