On pages using Phaser canvas where I createCursorKeys, I am unable to use the space bar in input fields on that page. I am only listening for Left and Right keyboad input - Is there a different solution I should be using that won’t interfere with the rest of the page?
(create)
cursors = scene.input.keyboard.createCursorKeys();
(update)
if (cursors.right.isDown) this.cameras.main.scrollX += 5;
if (cursors.left.isDown) this.cameras.main.scrollX -= 5;