赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 3254 |
最后登录 | 2017-8-11 |
在线时间 | 42 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 42 小时
- 注册时间
- 2017-6-8
- 帖子
- 36
|
5楼
楼主 |
发表于 2017-6-14 06:21:58
|
只看该作者
本帖最后由 kys2016 于 2017-6-14 06:40 编辑
@铅笔描绘的思念 @在野月光 多谢两位大佬的提示,现在已经完美解决啦!{:2_275:}{:2_275:}{:2_275:}
- var destinationChange = false;
- TouchInput._onTrigger = function(x, y) {
- this._events.triggered = true;
- this._x = x;
- this._y = y;
- this._date = Date.now();
- destinationChange = true;
- }
- Sprite_Destination.prototype.update = function() {
- Sprite.prototype.update.call(this);
- if ($gameTemp.isDestinationValid()) {
- this.updatePosition();
- if (this._frameCount < 19) {
- this.updateAnimation();
- this.visible = true;
- }
- else this.visible = false;
- }
- else {
- this._frameCount = 0;
- this.visible = false;
- }
- if (destinationChange) {
- this._frameCount = 0;
- destinationChange = false;
- }
- }
复制代码 |
|