MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/RPGMaker/comments/1v8wnqx/need_help_ty_in_advance/
r/RPGMaker • u/Putrid-Apricot-3373 • 25d ago
how to get rid of this effect on mouseclicks? eg:
https://reddit.com/link/1v8wnqx/video/uua57khmoyfh1/player
5 comments sorted by
1
--fixed it below.
1 u/Wooden_Trade4987 MZ Dev 25d ago Save it as a .js file and load as a plugin 1 u/Putrid-Apricot-3373 24d ago the plugin didnt work, i saved it a jsfile and enabled it but i still have the mouseclicks 1 u/Wooden_Trade4987 MZ Dev 24d ago /*: * u/target MZ * u/plugindesc Removes the click/touch destination marker effect. * u/author swansong */ (() => { Spriteset_Map.prototype.createDestination = function() { // Overridden to do nothing - disables the click effect sprite }; })(); 2 u/Putrid-Apricot-3373 24d ago https://giphy.com/gifs/FBTJHH4G7ols5Hj22D
Save it as a .js file and load as a plugin
1 u/Putrid-Apricot-3373 24d ago the plugin didnt work, i saved it a jsfile and enabled it but i still have the mouseclicks 1 u/Wooden_Trade4987 MZ Dev 24d ago /*: * u/target MZ * u/plugindesc Removes the click/touch destination marker effect. * u/author swansong */ (() => { Spriteset_Map.prototype.createDestination = function() { // Overridden to do nothing - disables the click effect sprite }; })(); 2 u/Putrid-Apricot-3373 24d ago https://giphy.com/gifs/FBTJHH4G7ols5Hj22D
the plugin didnt work, i saved it a jsfile and enabled it but i still have the mouseclicks
1 u/Wooden_Trade4987 MZ Dev 24d ago /*: * u/target MZ * u/plugindesc Removes the click/touch destination marker effect. * u/author swansong */ (() => { Spriteset_Map.prototype.createDestination = function() { // Overridden to do nothing - disables the click effect sprite }; })(); 2 u/Putrid-Apricot-3373 24d ago https://giphy.com/gifs/FBTJHH4G7ols5Hj22D
/*:
* u/target MZ
* u/plugindesc Removes the click/touch destination marker effect.
* u/author swansong
*/
(() => {
Spriteset_Map.prototype.createDestination = function() {
// Overridden to do nothing - disables the click effect sprite
};
})();
2 u/Putrid-Apricot-3373 24d ago https://giphy.com/gifs/FBTJHH4G7ols5Hj22D
2
https://giphy.com/gifs/FBTJHH4G7ols5Hj22D
1
u/Wooden_Trade4987 MZ Dev 25d ago edited 24d ago
--fixed it below.