1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-12 05:07:06 +00:00

boyfriend tv looping

This commit is contained in:
Cameron Taylor 2023-08-28 22:47:18 -04:00 committed by EliteMasterEric
parent 5ddc4876bc
commit 82bb619864

View file

@ -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;
}