赞 | 11 |
VIP | 0 |
好人卡 | 0 |
积分 | 24 |
经验 | 0 |
最后登录 | 2022-9-20 |
在线时间 | 363 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 2389
- 在线时间
- 363 小时
- 注册时间
- 2021-2-8
- 帖子
- 149
|
本帖最后由 Heiko 于 2022-8-25 15:28 编辑
脚本 SceneManager.push(Scene_Row)
想捣鼓成插件指令在插件脚本中的这个地方加红色那段脚本就可以,可以直接插件指令 打开阵型菜单,算是比填脚本更方便点
//=============================================================================
// Game_Interpreter
//=============================================================================
Yanfly.Row.Game_Interpreter_pluginCommand =
Game_Interpreter.prototype.pluginCommand;
Game_Interpreter.prototype.pluginCommand = function(command, args) {
Yanfly.Row.Game_Interpreter_pluginCommand.call(this, command, args);
if (command === 'ShowMenuRow') $gameSystem.setShowRowMenu(true);
if (command === 'HideMenuRow') $gameSystem.setShowRowMenu(false);
if (command === 'EnableMenuRow') $gameSystem.setEnabledRowMenu(true);
if (command === 'DisableMenuRow') $gameSystem.setEnabledRowMenu(false);
if (command === 'ShowBattleRow') $gameSystem.setShowRowBattle(true);
if (command === 'HideBattleRow') $gameSystem.setShowRowBattle(false);
if (command === 'EnableBattleRow') $gameSystem.setEnabledRowBattle(true);
if (command === 'DisableBattleRow') $gameSystem.setEnabledRowBattle(false);
if (command === 'SetActorRow') this.setActorRow(args);
if (command === 'SetPartyRow') this.setPartyRow(args);
if (command === 'SetEnemyRow') this.setEnemyRow(args);
if (command === '打开阵型菜单') SceneManager.push(Scene_Row);
}; |
|