var _Game_Interpreter_pluginCommand = Game_Interpreter.prototype.pluginCommand; Game_Interpreter.prototype.pluginCommand = function(command, args) { _Game_Interpreter_pluginCommand.call(this, command, args); // 在这里插入额外的内容 };
var _Game_Interpreter_pluginCommand =
Game_Interpreter.prototype.pluginCommand;
Game_Interpreter.prototype.pluginCommand = function(command, args) {
_Game_Interpreter_pluginCommand.call(this, command, args);
// 在这里插入额外的内容
};
根据插件开发的要求,所有的插件命令都是不断重载这个(真是难看的实现,不过也没其他办法了)
所以只要找到插件里对应的代码,就能够得知具体的执行过程了
|