NRP Window Battle Log Layout - NRP_WindowBattleLogLayout.js
シェア用テキスト:
▼NRP Window Battle Log Layout(砂川赳様作) - NRP_WindowBattleLogLayout.js
https://plugin.fungamemake.com/archives/27255
戦闘メッセージのレイアウトを変更します。ウィンドウの配置や大きさを変更可能です。
ふりがな:うぃんどうばとるろぐのれいあうと
機能概要: 戦闘メッセージのレイアウトを変更します。ウィンドウの配置や大きさを変更可能です。
利用規約(ライセンス):
・著作権:保持
・商用利用:許可
・追加改変:許可
・再配布:許可
・詳細はダウンロードページ・プラグイン内を確認
作者:砂川赳
作者サイト:http://newrpg.seesaa.net/
解説ページ:http://newrpg.seesaa.net/article/474864758.html
ファイル名:NRP_WindowBattleLogLayout.js
プラグインのヘルプ:
/*:ja * @plugindesc v1.01 戦闘メッセージのレイアウトを変更します。 * @author 砂川赳(http://newrpg.seesaa.net/) * * @help 戦闘メッセージのレイアウトを変更します。 * ウィンドウの配置や大きさを変更可能です。 * * ■主な特徴 * ・公式プラグインのSimpleMsgSideViewに対応。 * ・グラデーションに対応。 * ・通常ウィンドウに切替可能。 * ・背景色や透明度を変更可能。 * ・メッセージが長い場合、ウィンドウ幅に合わせて縮小。 * ・反対に文字列長にウィンドウ幅を合わせる機能も有。 * * 詳細は以下をご覧ください。 * http://newrpg.seesaa.net/article/474864758.html * * ■利用規約 * 特に制約はありません。 * 改変、再配布自由、商用可、権利表示も任意です。 * 作者は責任を負いませんが、不具合については可能な範囲で対応します。 * * @param <Window Position> * @text <配置関連> * @desc 配置関連の設定を行います。 * * @param x * @text X座標 * @parent <Window Position> * @type text * @default 0 * @desc ウィンドウのX座標です。 * * @param y * @text Y座標 * @parent <Window Position> * @type text * @default 0 * @desc ウィンドウのY座標です。 * * @param showFront * @text 前面表示する * @parent <Window Position> * @type boolean * @default false * @desc ウィンドウを前面表示します。 * ※下位のプラグインのウィンドウに対しては未保証。 * * @param <Window Size> * @text <サイズ関連> * @desc ウィンドウのサイズ関連の設定を行います。 * * @param width * @text 横幅 * @parent <Window Size> * @type text * @default this.windowWidth() * @desc ウィンドウの横幅です。 * 初期値はthis.windowWidth()で画面横幅に合わせます。 * * @param autoWidth * @text 横幅を文字数に合わせる * @parent <Window Size> * @type boolean * @default false * @desc ウィンドウの横幅を文字数に合わせて自動調整します。 * * @param lineHeight * @text 一行の縦幅 * @parent <Window Size> * @type number * @default 36 * @desc 一行の縦幅です。 * 初期値は36です。 * * @param <Window Message> * @text <メッセージ関連> * @desc ウィンドウのメッセージ関連の設定を行います。 * * @param fontSize * @text フォントサイズ * @parent <Window Message> * @type number * @default 28 * @desc フォントの大きさを指定します。 * 初期値は28です。 * * @param padding * @text メッセージの余白 * @parent <Window Message> * @type number * @default 18 * @desc メッセージの余白を指定します。 * 初期値は18です。 * * @param <Window Background> * @text <背景関連> * @desc ウィンドウの背景関連の設定を行います。 * * @param normalWindow * @text 通常ウィンドウにする * @parent <Window Background> * @type boolean * @default false * @desc 通常メッセージと同様のウィンドウに変更します。 * * @param backColor * @text 背景色 * @parent <Window Background> * @type text * @default #000000 * @desc 背景色を指定します。(16進数のRGB値、初期値:#000000) * 通常ウィンドウでは意味がありません。 * * @param backPaintOpacity * @text 背景不透明度 * @parent <Window Background> * @type number * @default 64 * @desc 背景の不透明度を指定します。(初期値:64) * 通常ウィンドウでは意味がありません。 * * @param gradientType * @text グラデーション方式 * @parent <Window Background> * @type select * @option 0:なし @value 0 * @option 1:横 @value 1 * @option 2:縦 @value 2 * @default 0 * @desc ウィンドウのグラデーション方式です。 * 通常ウィンドウでは意味がありません。 * * @param startGradientSize * @text 開始グラデーション幅 * @parent <Window Background> * @type text * @default 18 * @desc 開始側のグラデーション幅です。 * 初期値は18です。 * * @param endGradientSize * @text 終了グラデーション幅 * @parent <Window Background> * @type text * @default 18 * @desc 終了側のグラデーション幅です。 * 初期値は18です。 */