Funkin
Funkin copied to clipboard
Bug Report: Freeplay alternate instrumental selector arrows shift downwards when pressed with Escape
Issue Checklist
- [X] I have read the Contributing Guide
- [X] I have checked the Issues/Discussions pages to see if my issue has already been reported
- [X] I have properly titled my issue
Platform
Windows (Downloadable Build)
Version
0.7.3
Description (include any images, videos, errors, or crash logs)
https://github.com/user-attachments/assets/71ef90ba-3541-4404-b1fd-d96734f6d8fd
Steps to Reproduce
1.Select a song with multiple instrumentals in Freeplay. 2.Press the left or right arrow key simultaneously with the Escape key. 3.The arrow in the pressed direction shifts downward.
What in the world?
Damn that would be a cool easter egg in some form.
How does this even happen
function moveShitDown():Void
{
offset.y -= 5;
whiteShader.colorSet = true;
scale.x = scale.y = 0.5 * baseScale;
moveShitDownTimer = new FlxTimer().start(2 / 24, function(tmr) {
scale.x = scale.y = 1 * baseScale;
whiteShader.colorSet = false;
updateHitbox();
});
}
You're pressing the key faster than the 80 ms timer to reset it.