I cannot control a character on the Plunker playground in preview

Hello,

I finished the official “Making your first Phaser 3 game” tutorial:

But I cannot control a character on the Plunker playground in preview. But I can control it in full screen mode: Phishing Warning - Plunker Is it a Plunker issue or Phaser?

For example, my ship movement example in Three.js works on Plunker: Plunker - Ship movement with OimoPhysics, Three.js and JavaScript

@samme Thanks a lot that you helped me on Discord!

this is because of autoFocus: false in the game config. you can change that to true but it may make it harder to use the editor. I think you can also add to the game config:

input: { mouse: { preventDefaultDown: false } }

Playground:

GitHub repository with Rollup guide

Added 4/27/2024:

I have replaced Arcade Physics with box2d/core:

Playground:

GitHub repository with Rollup guide

image