Hello guys, how could I completely disable all player keys? I also want to disable Esc to access menu and other shortcuts… it’s a final scene of my game where a very slow motion transition happens… and I didn’t want to allow the player to leave the scene or access the menu! The “disable input” still allows me to access the menu via esc
You an use Disable Input
node.
1 Like
Hey there @ZanettiGameplay! Where is your escape button input logic? If you disable the input on the player via the disable input node it won’t disable input to everything, just for inputs to events on that actor. So say if you have your escape input on your main character and disable their input, you’ll only disable their movement. You’d have to disable the input of whatever is holding your pausing logic, or put a bool in there that you flick every time you disable the players input and want them unable to pause.
2 Likes
I was thinking about this, maybe a boolean configured in ESC will solve this problem…thanks a lot