当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
FTKR Title Scene - FTKR_TitleScene.js

▼FTKR Title Scene(フトコロ様作) - FTKR_TitleScene.js
https://plugin.fungamemake.com/archives/1322
タイトル画面のコマンドの表示変更や、クレジット画面を追加する。
ふりがな:たいとるしーん
機能概要: タイトル画面のコマンドの表示変更や、クレジット画面を追加する。
利用規約(ライセンス): MITライセンス
作者:フトコロ
作者サイト:https://x.com/futokoro_mv
ダウンロードページ:https://raw.githubusercontent.com/futokoro/RPGMaker/mas…
ファイル名:FTKR_TitleScene.js
プラグインのヘルプ:
/*:ja
* @plugindesc v1.0.1 タイトルシーンを改造するプラグイン
* @author フトコロ
*
* @param コンティニューコマンド
* @desc コンティニューを表示するかどうか設定します。
* @default 1
* @type select
* @option 表示する
* @value 1
* @option 表示しない
* @value 0
*
* @param オプションコマンド
* @desc オプションを表示するかどうか設定します。
* @default 1
* @type select
* @option 表示する
* @value 1
* @option 表示しない
* @value 0
*
* @param クレジットコマンド
* @desc クレジットを表示するか設定します。
* @default
* @type struct<credit>
*
* @param コマンドウィンドウ設定
* @desc コマンドウィンドウのレイアウトを変更します。
* @default {”fontsize”:”28”,”padding”:”18”,”lineHeight”:”36”,”opacity”:”192”,”hideFrame”:”1”}
* @type struct<window>
*
*
* @help
*-----------------------------------------------------------------------------
* 概要
*-----------------------------------------------------------------------------
* タイトルシーンを改造します。
*
* 1.コンティニューとオプションの表示有無を設定できます。
* 2.タイトルコマンドのフォントサイズや色を変更できます。
* 3.コマンドにクレジットを追加できます。
*
*
*-----------------------------------------------------------------------------
* 設定方法
*-----------------------------------------------------------------------------
* 1.「プラグインマネージャー(プラグイン管理)」に、本プラグインを追加して
* ください。
*
*
*-----------------------------------------------------------------------------
* 本プラグインのライセンスについて(License)
*-----------------------------------------------------------------------------
* 本プラグインはMITライセンスのもとで公開しています。
* This plugin is released under the MIT License.
*
* Copyright (c) 2018 Futokoro
* http://opensource.org/licenses/mit-license.php
*
*
*-----------------------------------------------------------------------------
* 変更来歴
*-----------------------------------------------------------------------------
*
* v1.0.1 - 2019/04/14 : 不具合修正
* 1. プラグインパラメータのクレジットコマンドを設定しない場合にエラーになる不具合を修正。
*
* v1.0.0 - 2018/05/06 : 初版作成
*
*-----------------------------------------------------------------------------
*/
//=============================================================================
/*~struct~credit:
* @param enable
* @text クレジットコマンド表示
* @desc コマンドを表示するか指定します。
* @type boolean
* @on 表示する
* @off 表示しない
* @default false
*
* @param name
* @text クレジットコマンド名
* @desc コマンドの表示名を設定します。
* @type text
* @default ”クレジット”
*
* @param enableType
* @text 素材種類選択
* @desc 素材種類の選択コマンドを表示するか指定します。
* @type boolean
* @on 表示する
* @off 表示しない
* @default true
*
* @param helpDesc
* @text クレジットヘルプ説明
* @desc クレジット画面のヘルプウィンドウ説明文を設定します。”文章”で制御文字を使用できます。
* @type text
* @default ”このゲームに使用している素材のクレジットをn作者敬称略にて表示します。”
*
* @param itemList
* @text クレジット対象
* @desc クレジットとして表示する対象を設定します。
* @type struct<creditItem>[]
* @default []
*
*/
/*~struct~creditItem:
* @param itemName
* @text 素材名
* @desc 素材の名称を設定します。
* @type text
* @default
*
* @param itemType
* @text 素材種類
* @desc 素材の種類を指定します。
* @type select
* @default
* @option その他
* @value 0
* @option プラグイン
* @value 1
* @option 画像
* @value 2
* @option 音声
* @value 3
* @option フォント
* @value 4
* @option 動画
* @value 5
*
* @param authorName
* @text 素材作者名
* @desc 素材作者の名称を設定します。(敬称略)
* @type text
* @default
*
* @param itemLink
* @text 素材入手先
* @desc 素材入手先アドレスを設定します。
* @type text
* @default
*
* @param itemDesc
* @text 素材の説明
* @desc 素材の説明文を記述します。”文章”で制御文字が使用できます。
* @type text
* @default
*
*/
/*~struct~window:
* @param fontsize
* @text フォントサイズ
* @desc タイトルコマンドのフォントサイズを設定します。
* @default 28
* @type number
*
* @param padding
* @text 余白サイズ
* @desc タイトルコマンドウィンドウの余白サイズを設定します。
* @default 18
* @type number
* @min 0
*
* @param lineHeight
* @text 行高さ
* @desc タイトルコマンドウィンドウの行高さを設定します。
* 0 - フォントサイズに合わせて自動調整します。
* @default 36
* @type number
* @min 0
*
* @param opacity
* @text 背景透明度
* @desc ウィンドウ内の背景の透明度を設定します。
* @default 192
* @type number
* @min 0
*
* @param hideFrame
* @text 枠表示有無
* @desc ウィンドウ枠を表示するかどうか設定します。
* @default 1
* @type select
* @option 表示する
* @value 1
* @option 表示しない
* @value 0
*/