| 赞 | 36 |
| VIP | 0 |
| 好人卡 | 0 |
| 积分 | 102 |
| 经验 | 0 |
| 最后登录 | 2026-1-6 |
| 在线时间 | 463 小时 |
Lv4.逐梦者
- 梦石
- 2
- 星屑
- 8199
- 在线时间
- 463 小时
- 注册时间
- 2021-12-4
- 帖子
- 493

|
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后面的单词来更改。 |
|