赞 | 25 |
VIP | 0 |
好人卡 | 0 |
积分 | 14 |
经验 | 0 |
最后登录 | 2024-11-27 |
在线时间 | 159 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1420
- 在线时间
- 159 小时
- 注册时间
- 2020-4-26
- 帖子
- 152
|
用法在這裡,改成事件可用即可
- Game_Player.prototype.moveByInput = function() {
- if (!this.isMoving() && this.canMove()) {
- var direction = this.getInputDirection();
- if (direction > 0) {
- $gameTemp.clearDestination();
- } else if ($gameTemp.isDestinationValid()){
- var x = $gameTemp.destinationX();
- var y = $gameTemp.destinationY();
- direction = this.findDirectionTo(x, y);
- }
- if (direction > 0) {
- this.executeMove(direction);
- }
- }
- };
复制代码 |
|