赞 | 6 |
VIP | 0 |
好人卡 | 0 |
积分 | 10 |
经验 | 0 |
最后登录 | 2025-1-16 |
在线时间 | 150 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 976
- 在线时间
- 150 小时
- 注册时间
- 2020-2-24
- 帖子
- 54
|
本帖最后由 kissice 于 2025-1-13 12:23 编辑
爆发技窗口的xy坐标在Scene_Battle.prototype.createSpecialSkillWindow = function() {
const rect = this.skillWindowRect();
this._specialSkillWindow = new Window_BattleSpecialSkill(rect);
this._specialSkillWindow.x = this._skillWindow.x;
this._specialSkillWindow.y = this._skillWindow.y;
将 this._skillWindow.x改成你想要的数字就行,y轴同理。
在y轴下面加上: this._specialSkillWindow.width=x; //宽度
this._specialSkillWindow.height=x; //长度
x换成你想要的数值即可修改爆发窗口的长宽 |
|