| 赞 | 36 |
| VIP | 0 |
| 好人卡 | 0 |
| 积分 | 96 |
| 经验 | 0 |
| 最后登录 | 2025-10-26 |
| 在线时间 | 462 小时 |
Lv4.逐梦者
- 梦石
- 2
- 星屑
- 7638
- 在线时间
- 462 小时
- 注册时间
- 2021-12-4
- 帖子
- 492

|
ColorManager.hpColor = function(actor) {
if (!actor) {
return this.normalColor();
} else if (actor.isDead()) {
return this.deathColor();
} else if (actor.isDying()) {
return this.crisisColor();
} else {
return this.normalColor();
}
}; // 默认是上面几种颜色,可以修改this后面的单词来更改。 |
|