RPGツクールMV用プラグイン投稿・告知サイト

#ツクプラ

FTKR Scene Back Images - FTKR_SceneBackImages.js

シェア用テキスト:
▼FTKR Scene Back Images(フトコロ様作) - FTKR_SceneBackImages.js
https://plugin.fungamemake.com/archives/1320
メニュー画面やショップ画面などに変数で切替可能な背景画像を設定する

ふりがな:しーんはいけいがぞう

機能概要: メニュー画面やショップ画面などに変数で切替可能な背景画像を設定する

利用規約(ライセンス): MITライセンス

作者:フトコロ

作者サイト:https://x.com/futokoro_mv

ダウンロードページ:https://raw.githubusercontent.com/futokoro/RPGMaker/mas…

ファイル名:FTKR_SceneBackImages.js

プラグインのヘルプ:

/*:
 * @plugindesc v1.0.0 メニューやショップ画面などに背景画像を設定するプラグイン
 * @author フトコロ
 *
 * @param --メニュー画面--
 * @default
 * 
 * @param Menu BackImages
 * @desc メニュー画面の背景を設定します。
 * @type struct<backImage>
 * @default {”images”:”[]”,”variableId”:”0”}
 * @parent dataType
 * 
 * @param Item BackImages
 * @desc アイテム画面の背景を設定します。
 * @type struct<backImage>
 * @default {”images”:”[]”,”variableId”:”0”}
 * @parent dataType
 * 
 * @param Skill BackImages
 * @desc スキル画面の背景を設定します。
 * @type struct<backImage>
 * @default {”images”:”[]”,”variableId”:”0”}
 * @parent dataType
 * 
 * @param Equip BackImages
 * @desc 装備画面の背景を設定します。
 * @type struct<backImage>
 * @default {”images”:”[]”,”variableId”:”0”}
 * @parent dataType
 * 
 * @param Status BackImages
 * @desc ステータス画面の背景を設定します。
 * @type struct<backImage>
 * @default {”images”:”[]”,”variableId”:”0”}
 * @parent dataType
 * 
 * @param Options BackImages
 * @desc オプション画面の背景を設定します。
 * @type struct<backImage>
 * @default {”images”:”[]”,”variableId”:”0”}
 * @parent dataType
 * 
 * @param Save BackImages
 * @desc セーブ画面の背景を設定します。
 * @type struct<backImage>
 * @default {”images”:”[]”,”variableId”:”0”}
 * @parent dataType
 * 
 * @param GameEnd BackImages
 * @desc ゲーム終了画面の背景を設定します。
 * @type struct<backImage>
 * @default {”images”:”[]”,”variableId”:”0”}
 * @parent dataType
 * 
 * @param --ロード画面--
 * @default
 * 
 * @param Load BackImages
 * @desc ロード画面の背景を設定します。
 * @type struct<backImage>
 * @default {”images”:”[]”,”variableId”:”0”}
 * @parent dataType

 *
 * @param --ショップ画面--
 * @default
 * 
 * @param Shop BackImages
 * @desc ショップ画面の背景を設定します。
 * @type struct<backImage>
 * @default {”images”:”[]”,”variableId”:”0”}
 * @parent dataType

 *
 * @help 
 *-----------------------------------------------------------------------------
 * 概要
 *-----------------------------------------------------------------------------
 * メニューやショップ画面などに背景画像を設定することができます。
 * 
 * ※使用する画像は img/picturesフォルダに保存してください。
 * 
 * 
 * 各画面のプラグインパラメータの背景画像<images>を複数設定し
 * 切替変数<variableId>を設定した場合は、切替変数の値に合わせて
 * 表示する背景画像の番号が変わります。
 * 
 * 例)
 * 背景画像<images>のリスト1番に設定した画像は
 * 切替変数の値が1の時に表示します。
 * 
 * 
 * 背景画像を一つも設定しない、または切替変数の値が0かリストにない番号の時は、
 * デフォルトの背景(マップ画面のコピー)になります。
 * 
 * 切替変数を設定しない場合は、背景画像の1番目を表示します。
 * 
 * 
 * なお、以下の画面の画像を設定しない場合、メニュー画面の画像設定が適用されます。
 * ・アイテム画面
 * ・スキル画面
 * ・装備画面
 * ・ステータス画面
 * ・オプション画面
 * ・セーブ画面
 * ・ゲーム終了画面
 * 
 * 
 *-----------------------------------------------------------------------------
 * 設定方法
 *-----------------------------------------------------------------------------
 * 1.「プラグインマネージャー(プラグイン管理)」に、本プラグインを追加して
 *    ください。
 * 
 * 
 *-----------------------------------------------------------------------------
 * 本プラグインのライセンスについて(License)
 *-----------------------------------------------------------------------------
 * 本プラグインはMITライセンスのもとで公開しています。
 * This plugin is released under the MIT License.
 * 
 * Copyright (c) 2018 Futokoro
 * http://opensource.org/licenses/mit-license.php
 * 
 * 
 * プラグイン公開元
 * https://github.com/futokoro/RPGMaker/blob/master/README.md
 * 
 * 
 *-----------------------------------------------------------------------------
 * 変更来歴
 *-----------------------------------------------------------------------------
 * 
 * v1.0.0 - 2018/02/24 : 初版作成
 * 
 *-----------------------------------------------------------------------------
*/
//=============================================================================
/*~struct~backImage:
 * @param images
 * @desc 背景に設定する画像を設定します。複数設定することで、ゲーム中に変数で切り替えられます。
 * @type file[]
 * @default []
 * @require 1
 * @dir img/pictures
 * @parent otherType
 *
 * @param variableId
 * @desc 背景画像を切り替えるための変数IDを設定します。
 * @type variable
 * @default 0
 * @parent database
*/

スポンサードリンク

スポンサードリンク

Copyright© #ツクプラ , 2025 All Rights Reserved.