赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 72 |
经验 | 0 |
最后登录 | 2024-11-16 |
在线时间 | 474 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7247
- 在线时间
- 474 小时
- 注册时间
- 2021-12-4
- 帖子
- 513
|
Game_Party.prototype.swapOrder = function(index1, index2) {
const temp = this._actors[index1];
this._actors[index1] = this._actors[index2];
this._actors[index2] = temp;
$gamePlayer.refresh();
};
官方的【整队】操作的实现是上面这样,所以【把队长挪到队尾】的操作当然应该写成:
Game_Party.prototype.leader2tail = function() {
const temp = this._actors[0]; // 记住队长是谁
for (let i = 1; i < this._actors.length; ++i)
this._actors[i - 1] = this._actors[i]; // 其他人依次往前补位
this._actors[this._actors.length - 1] = temp; // 最后队长变成队尾
$gamePlayer.refresh();
}; // 游戏中调用那就是 $gameParty.leader2tail(); |
|