WarningScreen.hx help #1029
Unanswered
zandereal1
asked this question in
Q&A
Replies: 1 comment
|
You usually handle this kind of input by catching input events in the main update loop: import funkin.menus.TitleState;
import funkin.options.Options;
function update():Void {
if (controls.ACCEPT) {
Options.flashingMenu = false;
FlxG.switchState(new TitleState());
}
if (controls.BACK)
FlxG.switchState(new TitleState());
} |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
hello, i've gotten a warning screen implemented but i have a problem, and it's that i'm a fucking dumbass, and need help making Enter Disable Flashing Lights and Backspace/Esc Keeping it on.. Sorry if this question is Stupid
All reactions