-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug Report: Results Text is moveable #3845
Comments
I am still able to reproduce without mods. |
Looks like this is some leftover debug code! |
i've known about this for months but didn't want people to find out so they don't remove it 😔 |
import funkin.play.ResultState;
import funkin.modding.module.Module;
import flixel.FlxG;
class ResultsThing extends Module {
public function new() {
super('ResultsThing');
}
function onUpdate() {
if (FlxG.state.subState is ResultState) {
if (FlxG.keys.justPressed.RIGHT) FlxG.state.subState.speedOfTween.x += 0.1;
if (FlxG.keys.justPressed.LEFT) FlxG.state.subState.speedOfTween.x -= 0.1;
}
}
} |
thank you very much! when this issue gets closed, it means its fixed internally, thanks! |
no problem ninjamuffin, i love you bro. (kisses cutely) |
Issue Checklist
Platform
Itch.io (Downloadable Build) - Windows
Browser
None
Version
v0.5.3
Description (include any images, videos, errors, or crash logs)
I was spamming arrow keys in the results screen for fun, but then I saw that the text was moving?
(Hitsounds were included for proof of pressing arrow keys)
Friday.Night.Funkin.2024-11-09.21-38-51.mp4
Nothing really else to say, but I don't know if this was an intentional debug feature that was left in by mistake or something?
Steps to Reproduce
The text was updated successfully, but these errors were encountered: