赞 | 84 |
VIP | 0 |
好人卡 | 0 |
积分 | 191 |
经验 | 0 |
最后登录 | 2025-1-10 |
在线时间 | 1309 小时 |
Lv4.逐梦者
- 梦石
- 12
- 星屑
- 7115
- 在线时间
- 1309 小时
- 注册时间
- 2020-4-19
- 帖子
- 250
|
4楼
楼主 |
发表于 2021-4-12 08:51:03
|
只看该作者
Window_Base.prototype.drawActorMp = function(actor, x, y, width) {
/*
width = width || 186;
var color1 = this.mpGaugeColor1();
var color2 = this.mpGaugeColor2();
this.drawGauge(x, y, width, actor.mpRate(), color1, color2);
this.changeTextColor(this.systemColor());
this.drawText(TextManager.mpA, x, y, 44);
this.drawCurrentAndMax(actor.mp, actor.mmp, x, y, width,
this.mpColor(actor), this.normalColor());
*/
};
像这样用 /* 和 */ 框柱一部分代码,就是注释。
被注释的代码不会运行,和删掉差不多,不过想反悔的时候可以去掉注释。
你注释的时候要注意,函数本身不要注释掉,不然肯定运行不了。
只注释花括号里面的内容就好了。 |
|