赞 | 58 |
VIP | 37 |
好人卡 | 59 |
积分 | 12 |
经验 | 66255 |
最后登录 | 2023-5-29 |
在线时间 | 1017 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1232
- 在线时间
- 1017 小时
- 注册时间
- 2011-4-30
- 帖子
- 1516
|
fukusima 发表于 2015-12-12 22:32
试了一下,好像不行啊
添加:
Window_Selectable.prototype.processWheel = function() {
//是打开和活动的
if (this.isOpenAndActive()) {
//临界值=20
var threshold = 20;
//如果滚轮y >= 临界
if (TouchInput.wheelY >= threshold || TouchInput.Gesture(2) ) {
this.scrollDown();
}
//如果滚轮y <= -临界
if (TouchInput.wheelY <= -threshold || TouchInput.Gesture(8) ) {
this.scrollUp();
}
}
};
这个的话需要
TouchInput 添加手势 n方向 |
评分
-
查看全部评分
|