「メニューの背景画像を変更するプラグイン」です。
こちらはRPGツクールMV向けの記事です。
RPGツクールMZ向けの記事もございます。
最新版は Moghunter 様のサイトでポルトガル語版が配布されています。
mogplugins.wordpress.com/rpg-maker-mv/
上記で全てのプラグインが入ったサンプルプロジェクトが配布されています。
各プラグインを動作させるための画像素材も入っているため、サンプルプロジェクトをダウンロードし、日本語版を差し替えて試してください。
どなたかのお役に立てば幸いです。
/*:ja
* @plugindesc (v1.2) メニューの背景画像を変更できます。
* @author Moghunter
*
* @param Default FileName
* @text メニュー共通背景画像
* @desc シーン別背景画像を指定しない場合、共通に使用するファイル名。(大文字小文字を区別、拡張子なし)
* @type file
* @require 1
* @dir img/pictures
* @default Pic_1
*
* @param Unique Backgrounds
* @text シーン別背景画像の有効化
* @default false
* @type boolean
* @on 有効
* @off 無効
*
* @param Disable Scenes
* @text 無効化シーン
* @desc 効果を無効にするシーンの指定。 Scene_Item, Scene_Skill, Scene_Equip, Scene_Status, Scene_Options, Scene_Save, Scene_GameEnd
* @default Scene_Item,Scene_Skill,Scene_Equip,Scene_Status,Scene_Options,Scene_Save,Scene_GameEnd
*
* @param Sufix FileName
* @text シーン別背景画像の接尾辞
* @default _back
*
* @param Window Opacity
* @text ウィンドウの透明度
* @default 30
*
* @param Scroll X-Axis
* @text X方向移動速度
* @desc 正:左 / 負:右
* @default 0
*
* @param Scroll Y-Axis
* @text Y方向移動速度
* @desc 正:上 / 負:下
* @default 0
*
* @help
* 翻訳:ムノクラ
* https://fungamemake.com/
* https://twitter.com/munokura/
*
* ===========================================================================
* +++ MOG - Menu Background (v1.2) +++
* By Moghunter
* https://atelierrgss.wordpress.com/
* ===========================================================================
* メニューの背景画像を変更できます。
* シーン毎に異なる背景画像を有効/無効にできます。
* ===========================================================================
* 背景画像は下記フォルダに保存して下さい。
* /img/pictures/
*
* ===========================================================================
* シーン別の背景が有効になっている場合、
* 各背景画像は下記のファイルネームの法則に従う必要があります。
*
* Scene_Name + _back.png
*
* 例
*
* Scene_Menu_back.png
* Scene_Item_back.png
* Scene_Skill_back.png
* Scene_Equip_back.png
* Scene_Status_back.png
* Scene_Options_back.png
* Scene_Save_back.png
* Scene_GameEnd_back.png
* ...
* ※並び替えシーンはメニューシーンと統一されています。
*
* ===========================================================================
* プラグインコマンド
* ===========================================================================
* ゲーム中に背景画像を変更するには、以下のコマンドを使用してください。
*
* backgroundName : FILE_NAME
*
* ===========================================================================
* 更新履歴
* ===========================================================================
* v1.2 - MOG_PictureGaleryとの互換性
* v1.1 - コーディング改善
*/