赞 | 58 |
VIP | 37 |
好人卡 | 59 |
积分 | 12 |
经验 | 66255 |
最后登录 | 2023-5-29 |
在线时间 | 1017 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1232
- 在线时间
- 1017 小时
- 注册时间
- 2011-4-30
- 帖子
- 1516
|
- //输入 移动
- Game_Player.prototype.moveByInput = function() {
- //假设是 120号开关打开时才能移动
- if (!this.isMoving() && this.canMove() && $gameSwitches.value(120) ) {
- 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);
- }
- }
- };
复制代码 |
|