Initial Commit

This commit is contained in:
OleSTEEP 2023-12-29 23:09:55 +03:00
commit ec5c71b3ac
1712 changed files with 1767257 additions and 0 deletions

View file

@ -0,0 +1,30 @@
//-----------------------------------------------------------------------------
// Galv's Disable Mouse
//-----------------------------------------------------------------------------
// For: RPGMAKER MV
// DisableMouse.js
//-----------------------------------------------------------------------------
// Version 1.0
// 2015-11-03 - Version 1.0 - release
//-----------------------------------------------------------------------------
// Terms can be found at:
// galvs-scripts.com
//-----------------------------------------------------------------------------
var Imported = Imported || {};
Imported.Galv_NoMouse = true;
//-----------------------------------------------------------------------------
/*:
* @plugindesc Disables mouse clicks.
*
* @author Galv - galvs-scripts.com
*
* @help
* This space intentionally left blank.
*
*/
TouchInput._onMouseDown = function(event) {
// Overwrite to do nothing
};