我想要做一个选项窗口能跟随角色的插件,但是现在是找不到对应的角色素材位置
目前是这样的如果有其它问题也麻烦了
Scene_Battle.prototype.startActorCommandSelection = function() {
this._statusWindow.show();
this._statusWindow.select(BattleManager.actor());
this._partyCommandWindow.close();
this._actorCommandWindow.show();
this._actorCommandWindow.setup(BattleManager.actor());
};
const spriteset = SceneManager._scene._spriteset
const actorSprite = spriteset(BattleManager.actor())
this._actorCommandWindow.x = $gamePlayer.x
this._actorCommandWindow.y = $gamePlayer.y

目前是这样的如果有其它问题也麻烦了
Scene_Battle.prototype.startActorCommandSelection = function() {
this._statusWindow.show();
this._statusWindow.select(BattleManager.actor());
this._partyCommandWindow.close();
this._actorCommandWindow.show();
this._actorCommandWindow.setup(BattleManager.actor());
};
const spriteset = SceneManager._scene._spriteset
const actorSprite = spriteset(BattleManager.actor())
this._actorCommandWindow.x = $gamePlayer.x
this._actorCommandWindow.y = $gamePlayer.y










