From 82bb619864246c6e7f9ddeed23786464c0ebdec7 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Mon, 28 Aug 2023 22:47:18 -0400 Subject: [PATCH] boyfriend tv looping --- source/funkin/freeplayStuff/DJBoyfriend.hx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/funkin/freeplayStuff/DJBoyfriend.hx b/source/funkin/freeplayStuff/DJBoyfriend.hx index 1a7d9b9ed..99981c8fa 100644 --- a/source/funkin/freeplayStuff/DJBoyfriend.hx +++ b/source/funkin/freeplayStuff/DJBoyfriend.hx @@ -89,6 +89,8 @@ class DJBoyfriend extends FlxAtlasSprite playFlashAnimation('bf dj afk', false); } timeSinceSpook = 0; + case TV: + if (getCurrentAnimation() != 'Boyfriend DJ watchin tv OG') playFlashAnimation('Boyfriend DJ watchin tv OG', true); default: // I shit myself. } @@ -109,6 +111,9 @@ class DJBoyfriend extends FlxAtlasSprite // trace('Finished spook'); currentState = Idle; case "Boyfriend DJ confirm": + + case "Boyfriend DJ watchin tv OG": + anim.play("Boyfriend DJ watchin tv OG", true, false, 112); // trace('Finished confirm'); } } @@ -176,4 +181,5 @@ enum DJBoyfriendState Idle; Confirm; Spook; + TV; }