2 - Colored healthbar
HP coloring from green at 100% to red at 1%.
| User | When | Change |
|---|---|---|
| Fugaz1 | Wed, 12 Nov 2008 17:30:21 | Create |
- 1 comment
- 1 comment
Facts
- Last updated on
- 28 Dec 2008
- Reported on
- 12 Nov 2008
- Status
- New - Issue has not had initial review yet.
- Type
- Enhancement - A change which is intended to better the project in some way
- Priority
- Medium - Normal priority.
- #1
Skizelli Fri, 21 Nov 2008 13:04:44I would love to see this implemented. Here's one such method:
<<code>>local hook; function HealthFade() hook=HealthBar_OnValueChanged; HealthBar_OnValueChanged=HealthFade_Smooth; endfunction HealthFade_Smooth(self, value, smooth) hook(self, value, true); end<</code>>