mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-29 10:13:32 +00:00
Daddy Dearest animation fixes
This commit is contained in:
parent
4efafe8a78
commit
a2ddeec5bb
|
@ -582,6 +582,13 @@ class BaseCharacter extends Bopper
|
||||||
// restart even if already playing, because the character might sing the same note twice.
|
// restart even if already playing, because the character might sing the same note twice.
|
||||||
playAnimation(anim, true);
|
playAnimation(anim, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override function playAnimation(name:String, restart:Bool = false, ?ignoreOther:Bool = false, ?reversed:Bool = false):Void
|
||||||
|
{
|
||||||
|
FlxG.watch.addQuick('playAnim(${characterName})', name);
|
||||||
|
trace('playAnim(${characterName}): ${name}');
|
||||||
|
super.playAnimation(name, restart, ignoreOther, reversed);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue