Funkin/source/funkin/TankCutscene.hx

28 lines
478 B
Haxe
Raw Normal View History

package funkin;
2021-04-09 20:34:25 -04:00
import flixel.FlxSprite;
import flixel.sound.FlxSound;
2021-04-09 20:34:25 -04:00
class TankCutscene extends FlxSprite
{
public var startSyncAudio:FlxSound;
2021-04-09 20:34:25 -04:00
public function new(x:Float, y:Float)
{
super(x, y);
}
2021-04-09 20:34:25 -04:00
var startedPlayingSound:Bool = false;
2021-04-09 20:34:25 -04:00
override function update(elapsed:Float)
{
if (animation.curAnim.curFrame >= 1 && !startedPlayingSound)
{
startSyncAudio.play();
startedPlayingSound = true;
}
2021-04-09 20:34:25 -04:00
super.update(elapsed);
}
2021-04-09 20:34:25 -04:00
}