Skip to content

Instantly share code, notes, and snippets.

@triacontane
Last active October 27, 2022 14:20
Show Gist options
  • Save triacontane/a9023865073b5b1055488d13268382d9 to your computer and use it in GitHub Desktop.
Save triacontane/a9023865073b5b1055488d13268382d9 to your computer and use it in GitHub Desktop.
カスタムメニュー作成プラグインを改造
const _Window_CustomMenu_drawItem = Window_CustomMenu.prototype.drawItem;
Window_CustomMenu.prototype.drawItem = function(index) {
console.log(index);
_Window_CustomMenu_drawItem.apply(this, arguments);
};
Window_CustomMenu.prototype.outLog = function() {
console.log('test');
};
@triacontane
Copy link
Author

項目描画スクリプトなどでthis.outLog()と記述すると追加メソッドを呼べます。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment