Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- TouchInput._setupEventHandlers = function() {
- /*
- document.addEventListener('mousedown', this._onMouseDown.bind(this));
- document.addEventListener('mousemove', this._onMouseMove.bind(this));
- document.addEventListener('mouseup', this._onMouseUp.bind(this));
- document.addEventListener('wheel', this._onWheel.bind(this));
- document.addEventListener('touchstart', this._onTouchStart.bind(this));
- document.addEventListener('touchmove', this._onTouchMove.bind(this));
- document.addEventListener('touchend', this._onTouchEnd.bind(this));
- document.addEventListener('touchcancel', this._onTouchCancel.bind(this));
- document.addEventListener('pointerdown', this._onPointerDown.bind(this));
- */
- };
- ConfigManager.touchUI = false;
- Window_Options.prototype.addGeneralOptions = function() {
- this.addCommand(TextManager.alwaysDash, "alwaysDash");
- this.addCommand(TextManager.commandRemember, "commandRemember");
- //this.addCommand(TextManager.touchUI, "touchUI");
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement