赞 | 25 |
VIP | 0 |
好人卡 | 0 |
积分 | 44 |
经验 | 0 |
最后登录 | 2024-11-12 |
在线时间 | 550 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 4362
- 在线时间
- 550 小时
- 注册时间
- 2018-11-12
- 帖子
- 114
|
- /*:
- * @plugindesc 自定义菜单人物行数
- * @author CHK
- *
- * @help
- * 即插即用。仅限主菜单的人物列表。
- *
- *
- * @param 显示的人物数量
- * @desc 菜单初始显示4人,填写最好不要超过14个。
- * @default 4
- */
-
- (function() {
-
- var parameters = PluginManager.parameters('RW');
- var ShuLiang = Number(parameters['显示的人物数量'] || 4);
- Window_MenuStatus.prototype.numVisibleRows = function() {
- return ShuLiang;
- };
- Window_MenuStatus.prototype.standardFontSize = function() {
- var zihao = parseInt(28 / (this.numVisibleRows()/4));
- return zihao<14?14:zihao;
- };
-
- Window_MenuStatus.prototype.lineHeight = function() {
- return this.standardFontSize();
- };
-
- Window_MenuStatus.prototype.drawItemImage = function(index) {
- var actor = $gameParty.members()[index];
- var rect = this.itemRect(index);
- this.changePaintOpacity(actor.isBattleMember());
- this.drawActorFace(actor, rect.x + 1, rect.y + 1, Window_Base._faceWidth, this.itemHeight());
- this.changePaintOpacity(true);
- };
- })();
复制代码
把代码复制粘贴成插件,改名:RW
即插即用。
|
评分
-
查看全部评分
|