- Joined
- Aug 27, 2022
- Messages
- 34
- Reaction score
- 14
- First Language
- Korean
- Primarily Uses
- RMMZ
I'm making a key setting system.
Detects the player's key input and set the code of the input key with a variable.

It works very well. But there's a problem.
Let me give you an example.
If I set [w] to 'up' and set [↑] to 'up', [↑] is not replaced by 'up' key.
[w], [↑] both become 'up' keys.
Is there a way to remove the existing Input.keyMapper?
Detects the player's key input and set the code of the input key with a variable.
Input.keyMapper[$gameVariables.value] = 'up';

It works very well. But there's a problem.
Let me give you an example.
If I set [w] to 'up' and set [↑] to 'up', [↑] is not replaced by 'up' key.
[w], [↑] both become 'up' keys.
Is there a way to remove the existing Input.keyMapper?