[solved] change the keys of the plattformer automathism

Hi,

I simply want to know if it is possible to change the keys of the platformer automathism. I dont want to jump with the shift-key, I want to jump with the arrow-up-key.

Yes, you can :slight_smile:
You have actions that “simulate” key presses, and options in the automated object to cancel default controls.
Then you have to add events like this:

If "A" key is pressed ==> Simulate Left key for "Object_A" with PlatformAutomatism

Or, in your case:

If "Up" key is pressed ==> Simulate Jump key for "Object_A" with PlatformAutomatism

Then, the selected object will move at left if “A” key is pressed and jump with “Up” arrow key.

Thank you for the quick response.
It helps a lot.