51 lines
No EOL
2.2 KiB
JavaScript
51 lines
No EOL
2.2 KiB
JavaScript
//=============================================================================
|
|
// MW_ImagePreload.js
|
|
//=============================================================================
|
|
/*:
|
|
* @plugindesc 画像をプリロードするプラグイン
|
|
* @author 銀河
|
|
* @help
|
|
* 画像をプリロードするプラグインです。
|
|
*
|
|
*/
|
|
|
|
(function() {
|
|
// プラグインのパラメーターを格納する変数
|
|
var parameters = PluginManager.parameters('PreloadPatternA');
|
|
|
|
// プラグインコマンドの処理
|
|
var _Game_Interpreter_pluginCommand = Game_Interpreter.prototype.pluginCommand;
|
|
Game_Interpreter.prototype.pluginCommand = function(command, args) {
|
|
_Game_Interpreter_pluginCommand.call(this, command, args);
|
|
|
|
// プラグインコマンドが Preload patternA の場合
|
|
if (command === 'Preload' && args[0] === 'FastTravel') {
|
|
ImgList = ['[System]FastTravel_MAP_0000',
|
|
'[System]FastTravel_MAP_0001',
|
|
'[System]FastTravel_MAP_0002a',
|
|
'[System]FastTravel_MAP_0002b',
|
|
'[System]FastTravel_MAP_0002c',
|
|
'[System]FastTravel_MAP_0003a',
|
|
'[System]FastTravel_MAP_0003b',
|
|
'[System]FastTravel_MAP_0003c',
|
|
'[System]FastTravel_MAP_0004a',
|
|
'[System]FastTravel_MAP_0004b',
|
|
'[System]FastTravel_MAP_0004c',
|
|
'[System]FastTravel_MAP_0005a',
|
|
'[System]FastTravel_MAP_0005b',
|
|
'[System]FastTravel_MAP_0005c',
|
|
'[System]FastTravel_MAP_0006a',
|
|
'[System]FastTravel_MAP_0006b',
|
|
'[System]FastTravel_MAP_0006c',
|
|
'[System]FastTravel_MAP_0007a',
|
|
'[System]FastTravel_MAP_0007b',
|
|
'[System]FastTravel_MAP_0007c',
|
|
'[System]FastTravel_MAP_0008',
|
|
'[System]FastTravel_MAP_0009'
|
|
]
|
|
for(var i=0;i<ImgList.length;i++){
|
|
ImageManager.loadPicture(ImgList[i], 0);
|
|
}
|
|
}
|
|
};
|
|
})(); |