当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
DarkPlasma スクリーンショットギャラリー - DarkPlasma_ScreenshotGallery.js
シェア用テキスト:
▼DarkPlasma スクリーンショットギャラリー(DarkPlasma様作) - DarkPlasma_ScreenshotGallery.js
https://plugin-mz.fungamemake.com/archives/5121
スクリーンショットの撮影、保存を可能とし保存したスクリーンショットをゲーム内で閲覧するシーンを提供します。
ふりがな:すくりーんしょっとぎゃらりー
機能概要: スクリーンショットの撮影、保存を可能とし保存したスクリーンショットをゲーム内で閲覧するシーンを提供します。
利用規約(ライセンス): MITライセンス
作者:DarkPlasma
作者サイト:https://elleonard.github.io/DarkPlasma-MZ-Plugins/index.html
解説ページ:https://elleonard.github.io/DarkPlasma-MZ-Plugins/2023/…
ファイル名:DarkPlasma_ScreenshotGallery.js
プラグインのヘルプ:
/*:
* @plugindesc スクリーンショットギャラリー
* @author DarkPlasma
* @license MIT
*
* @target MZ
* @url https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree/release
*
* @param key
* @text 撮影キー
* @type select
* @option control
* @option tab
* @default control
*
* @param tweetKey
* @desc ギャラリーからツイートするキー。DarkPlasma_TweetScreenshotが必要です。機能を利用しない場合は空欄
* @text ツイートキー
* @type select
* @option pageup
* @option pagedown
* @option shift
* @option control
* @option tab
* @option
* @default shift
*
* @param scenes
* @text 撮影可能シーン
* @type string[]
* @default [”Scene_Base”]
*
* @param format
* @text フォーマット
* @type select
* @option png
* @option jpg
* @default png
*
* @param se
* @text 効果音
* @type struct<Se>
* @default {”name”:”Switch2”, ”volume”:”90”, ”pitch”:”100”, ”pan”:”0”}
*
* @param flash
* @text フラッシュ
* @type struct<Flash>
* @default {”red”:”255”, ”green”:”255”, ”blue”:”255”, ”power”:”170”, ”frame”:”30”}
*
* @param directory
* @text 保存先フォルダ名
* @type string
* @default screenshot
*
* @param maxView
* @desc スクショギャラリーでの表示最大数
* @text 表示最大数
* @type number
* @default 30
*
* @param preview
* @text プレビュー設定
* @type struct<Preview>
* @default {”show”:”true”, ”frameWidth”:”4”, ”duration”:”60”, ”rect”:”{”x”:”16”, ”y”:”16”, ”width”:”102”, ”height”:”78”}”}
*
* @command sceneScreenshot
* @text スクショギャラリーを開く
*
* @help
* version: 1.1.1
* スクリーンショットの撮影、保存を可能とし
* 保存したスクリーンショットをゲーム内で閲覧するシーンを提供します。
*
* DarkPlasma_TweetScreenshotと一緒に利用することで
* ギャラリーでスクリーンショットを閲覧している際にその画像をツイートできます。
*
* ブラウザプレイには対応していません。
*
* シーンクラス名を指定してギャラリーシーンを開く場合、
* Scene_ScreenshotGallery
* と指定してください。
*/