- Joined
- Apr 11, 2018
- Messages
- 13
- Reaction score
- 1
- First Language
- Turkish
- Primarily Uses
- RMMV
As you know in RPG Maker MV, when we hold to clicking left mouse button we can continuously move all around the map. What I need is when I click a tile with left mouse button, my character must just stop in that tile even I hold to clicking left mouse button over another tile. For example; the game "To the Moon" uses a mouse mechanic like what I want.
Alright, I've found the solution:
Open rpg_core.js and find this line;
Alright, I've found the solution:
Open rpg_core.js and find this line;
and change it with new code;TouchInput.isPressed = function() {
return this._mousePressed || this._screenPressed;
};
TouchInput.isPressed = function() {
return this._triggered;
Last edited:
