- Joined
- Aug 24, 2017
- Messages
- 81
- Reaction score
- 8
- First Language
- Chinese
- Primarily Uses
- RMMV
Hi,
I'm using
Picture Common Events by yanfly
http://yanfly.moe/2016/04/01/yep-88-picture-common-events/
And I'd like to know can I bind a key to the picture?
Sometime plugin got some key to use.
For example
Does anyone know how to bind 'a' 'c' 'd' 's' to the picture by Picture Common Events ?
Thanks.
I'm using
Picture Common Events by yanfly
http://yanfly.moe/2016/04/01/yep-88-picture-common-events/
And I'd like to know can I bind a key to the picture?
Sometime plugin got some key to use.
For example
Code:
Game_Temp.prototype.loadInput = function() {
Input.keyMapper[65] = 'a';
Input.keyMapper[67] = 'c';
Input.keyMapper[68] = 'd';
Input.keyMapper[83] = 's';
};
Thanks.

