赞 | 15 |
VIP | 0 |
好人卡 | 0 |
积分 | 41 |
经验 | 1671 |
最后登录 | 2024-12-5 |
在线时间 | 441 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 4094
- 在线时间
- 441 小时
- 注册时间
- 2015-4-4
- 帖子
- 156
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 玄羽 于 2019-1-22 00:26 编辑
Sprite_Button.prototype.processTouch = function() {
if (this.isActive()) {
if (TouchInput.isTriggered() && this.isButtonTouched()&&!this.isTransparency()) {
this._touching = true;
}
if (this._touching) {
if (TouchInput.isReleased() || !this.isButtonTouched()) {
this._touching = false;
if (TouchInput.isReleased()) {
this.callClickHandler();
}
}
}
} else {
this._touching = false;
}
}; |
|