「ギャラリーシーンを追加するプラグイン」です。
以前、日本語化したものを見直し、プラグインパラメーターも操作しやすく調整いたしました。
最新版は Moghunter 様のサイトでポルトガル語版が配布されています。
mogplugins.wordpress.com/rpg-maker-mv/
上記で全てのプラグインが入ったサンプルプロジェクトが配布されています。
各プラグインを動作させるための画像素材も入っているため、サンプルプロジェクトをダウンロードし、日本語版を差し替えて試してください。
どなたかのお役に立てば幸いです。
/*:ja
* @plugindesc (v1.5) ギャラリーシーンを追加します。
* @author Moghunter
*
* @param Number of Pictures
* @text ギャラリー掲載数
* @default 4
*
* @param Command Menu
* @text ギャラリーのコマンド表示
* @type boolean
* @on 表示
* @off 非表示
* @default true
*
* @param Command Word
* @text コマンドの表示テキスト
* @default ギャラリー
*
* @param Completion Word
* @text 獲得率の表示テキスト
* @default 獲得率
*
* @param Number Word
* @text 獲得画像表示テキスト
* @default 画像
*
* @param Thumbnails For Line
* @text 1行あたりのサムネイル数
* @default 3
*
* @param Thumbnail X-Axis
* @text サムネイル画像のX軸位置
* @desc 正:右 / 負:左
* @type number
* @min -9007
* @max 9007
* @default 23
*
* @param Thumbnail Y-Axis
* @text サムネイル画像のY軸位置
* @desc 正:下 / 負:上
* @type number
* @min -9007
* @max 9007
* @default 25
*
* @param Number X-Axis
* @text 番号のX軸位置
* @desc 正:右 / 負:左
* @type number
* @min -9007
* @max 9007
* @default 0
*
* @param Number Y-Axis
* @text 番号のY軸位置
* @desc 正:下 / 負:上
* @type number
* @min -9007
* @max 9007
* @default -32
*
* @param Info Visible
* @text 情報ウィンドウの有効化
* @type boolean
* @on 有効
* @off 無効
* @default true
*
* @param Info X-Axis
* @text 情報ウィンドウのX軸位置
* @desc 正:右 / 負:左
* @type number
* @min -9007
* @max 9007
* @default 0
*
* @param Info Y-Axis
* @text 情報ウィンドウのY軸位置
* @desc 正:下 / 負:上
* @type number
* @min -9007
* @max 9007
* @default 0
*
* @param Info Duration
* @text 情報ウィンドウの表示時間
* @default 90
*
* @param Double Click Speed
* @text ダブルクリック速度
* @desc ダブルクリックして画像をキャンセルする時間
* @default 10
*
* @param File Directory
* @text 画像保存フォルダ
* @default img/pictures/
*
* @param File Name
* @text ファイル名接頭語
* @desc 画像ギャラリーに表示するファイル名の接頭語
* @default Pic_
*
* @param Fit Screen Key
* @text 画面サイズ調整キー
* @desc 画像を画面サイズに調整するキー
* @type combo
* @option shift
* @option alt
* @option a
* @option d
* @option c
* @option s
* @option q
* @option w
* @option cancel
* @option ok
* @option pageup
* @option pagedown
* @default pagedown
*
* @param Set Wallpaper
* @text 壁紙機能の有効化
* @type boolean
* @on 有効
* @off 無効
* @default true
*
* @param Set Wallpaper Key
* @text 壁紙設定キー
* @type combo
* @option shift
* @option alt
* @option a
* @option d
* @option c
* @option s
* @option q
* @option w
* @option cancel
* @option ok
* @option pageup
* @option pagedown
* @default pageup
*
* @help
* 翻訳:ムノクラ
* https://fungamemake.com/
* https://twitter.com/munokura/
*
* ===========================================================================
* +++ MOG - Picture Gallery (v1.5) +++
* By Moghunter
* https://atelierrgss.wordpress.com/
* ===========================================================================
* 画像ギャラリーシーンを追加します。
* ===========================================================================
* 画像は下記フォルダに保存してください。
*
* /img/picture/
*
* 下記画像が必要です。
*
* Pic_Thumb.png
* Pic_Info.png
*
* ===========================================================================
* デフォルトでは、ギャラリーシーンはメインメニューからアクセスできます。
* 下記のプラグインコマンドでシーンを呼び出すことが出来ます。
*
* picture_gallery
*
* ===========================================================================
* 下記のプラグインコマンドでギャラリー表示に画像を有効/無効にします。
*
* enable_picture : ID
* disable_picture : ID
*
* ===========================================================================
* 更新履歴
* ===========================================================================
* (v1.5) - 画像ギャラリーを使用して壁紙を設定可能
* (MOG_MenuBackgroundが必要)
* - 最高の効果
* (v1.4) - MOG_MenuCursorとの互換性
* (v1.3) - バグ修正はWEBモードで必要ですが、
* 画像の数はプラグインによって設定
* (v1.2) - システムの変換時にファイルが読み込まれない問題を修正
* 他のプラットフォーム (展開)
* (v1.1) - 画像のディレクトリを設定可能
* デフォルトでは画像は /img/pictures/ フォルダーに保存されるため、
* ゲーム中とギャラリーの両方に画像を使用可能
* - 画面に合わせる機能を追加
* ===========================================================================
*/