赞 | 19 |
VIP | 0 |
好人卡 | 0 |
积分 | 61 |
经验 | 0 |
最后登录 | 2025-1-11 |
在线时间 | 338 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 6127
- 在线时间
- 338 小时
- 注册时间
- 2024-8-28
- 帖子
- 173
|
- Window_StatusBase.prototype.placeBasicGauges = function(actor, x, y) {
- this.placeGauge(actor, "hp", x, y);
- this.placeGauge(actor, "mp", x, y + this.gaugeLineHeight());
- if ($dataSystem.optDisplayTp) {
- this.placeGauge(actor, "tp", x, y + this.gaugeLineHeight() * 2);
- }
- };
复制代码
绘制的代码是上面的 想去掉就 自己建个JS 里面写
- Window_StatusBase.prototype.placeBasicGauges = function(actor, x, y) {};
复制代码
就是重写 然后把里面的代码擦掉。 |
|