//============================================================================= // ModulePlugin //============================================================================= /*: * @target MZ * @plugindesc Allow Load Module Plugins * @author Heartcase * * @help ModulePlugin.js * * Put the Module Folder under js/modules and the entry file should be index.js * To invoke module, add the module entry plugin in plugins folder and enable it * then call PluginManager.loadModule inside your entry plugin */ PluginManager.loadModule = (filename) => { const url = `js/modules/${filename}/index.js`; const script = document.createElement('script'); script.type = 'module'; script.src = url; document.body.appendChild(script); };
2.32 KB, 下载次数: 48
欢迎光临 Project1 (https://rpg.blue/) | Powered by Discuz! X3.1 |