-
Notifications
You must be signed in to change notification settings - Fork 11
/
MNKR_SelectMaxRows.js
48 lines (43 loc) · 1.32 KB
/
MNKR_SelectMaxRows.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* --------------------------------------------------
* MNKR_SelectMaxRows.js
* Ver.1.0.0
* Copyright (c) 2020 Munokura
* This software is released under the MIT license.
* http://opensource.org/licenses/mit-license.php
* --------------------------------------------------
*/
/*:
* @target MZ
* @url https://raw.githubusercontent.com/munokura/MNKR-MZ-plugins/master/MNKR_SelectMaxRows.js
* @plugindesc 選択肢ウィンドウ内の行数を指定します。
* @author munokura
*
* @help
* 選択肢ウィンドウ内の行数を指定します。
*
* プラグインコマンドはありません。
*
*
* 利用規約:
* MITライセンスです。
* https://licenses.opensource.jp/MIT/MIT.html
* 作者に無断で改変、再配布が可能で、
* 利用形態(商用、18禁利用等)についても制限はありません。
*
*
* @param Max Rows
* @text 選択肢の行数
* @type number
* @default 6
* @desc 選択肢のウィンドウ内の表示行数
*/
(() => {
'use strict';
const pluginName = document.currentScript.src.split("/").pop().replace(/\.js$/, "");
const parameters = PluginManager.parameters(pluginName);
const maxRows = Number(parameters['Max Rows'] || 6);
Window_ChoiceList.prototype.maxLines = function () {
return maxRows;
};
})();