prevent actions menu from appearing when inserting space key on chat
This commit is contained in:
parent
469f9d9533
commit
ac9926b8d6
@ -280,6 +280,9 @@ export class UserInputManager {
|
||||
);
|
||||
|
||||
this.scene.input.keyboard.on("keyup-SPACE", (event: Event) => {
|
||||
if (this.isInputDisabled) {
|
||||
return;
|
||||
}
|
||||
this.userInputHandler.handleSpaceKeyUpEvent(event);
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user