https://linen.dev logo
```haxe if (FlxG.keys.anyPressed([V])) ...
# flixel
p
Copy code
haxe
        if (FlxG.keys.anyPressed([V]))
        {
            if (FlxG.state is BankScreen)
                FlxG.switchState(new OverWorldScreen());
            else
                FlxG.switchState(new BankScreen());
        }