Is it risky to have 2 Movement.js scripts

one of them to use WASD and the other for the arrows on the same entity

Hi @thebosser24,

Well you could do that, but why not add both input options at the same script?

if( this.app.keyboard.isPressed( pc.KEY_W) || this.app.keyboard.isPressed( pc.KEY_UP) ){
   // move forward
}

ok
Thats smart