赞 | 10 |
VIP | 0 |
好人卡 | 4 |
积分 | 4 |
经验 | 36501 |
最后登录 | 2019-9-13 |
在线时间 | 679 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 440
- 在线时间
- 679 小时
- 注册时间
- 2014-3-15
- 帖子
- 292
|
4楼
楼主 |
发表于 2017-3-19 18:55:01
|
只看该作者
本帖最后由 sonicdonggua 于 2017-3-19 18:56 编辑
Window_Formation.prototype.itemRect = function(index) {
var rect = Window_Selectable.prototype.itemRect.call(this, index);
rect.width = 48;
rect.height = 48;
rect.x = (index % this.maxCols()) * (this.itemWidth() + this.spacing());
rect.y = 9 + (Math.floor(index / this.maxCols()) - this.topRow()) * this.itemHeight();
return rect;
};
Window_Formation.prototype.itemWidth = function() {
return 60;
};
Window_Formation.prototype.itemHeight = function() {
return 66;
};
Window_Formation.prototype.drawItem = function(i){
var x = this.itemWidth() * Math.floor((i % this.maxCols()));
var y = 12 + this.itemHeight() * (Math.floor((i / this.maxCols())) - this.topRow());
if (i == this._lockIndex) {
this.contents.fillRect(x, y - 3, 48, 48, 'rgba(0,0,0,0.5)')
}
if (this._members) {
if (this._members.isFixed()) {
this.contents.fillRect(x, y - 3, 48, 48, 'rgba(128,0,0,0.5)')
}
this.drawActorCharacter(this._members, x + 24, y + 44);
} else {
this.drawText('-', x, y, 48, 'center');
}
};
这些是你需要更改的地方。drawActorCharacter替换为drawActorFace,加粗的地方你把大小更改成你需要的数据 |
|