mirror of
https://gitlab.com/jessieh/doghud.git
synced 2024-11-09 09:11:45 +00:00
24 lines
722 B
Plaintext
24 lines
722 B
Plaintext
|
//====================================================================================================================
|
||
|
|
||
|
event HudMedicCharged
|
||
|
{
|
||
|
Animate ChargeMeter FgColor "Full Ubercharge" Linear 0.0 0.075
|
||
|
Animate ChargeMeter FgColor "Full Ubercharge Pulse" Linear 0.125 0.075
|
||
|
|
||
|
RunEvent HudMedicChargedLoop 0.7
|
||
|
}
|
||
|
|
||
|
event HudMedicChargedLoop
|
||
|
{
|
||
|
RunEvent HudMedicCharged 0.0
|
||
|
}
|
||
|
|
||
|
event HudMedicChargedStop
|
||
|
{
|
||
|
StopEvent HudMedicCharged 0.0
|
||
|
StopEvent HudMedicChargedLoop 0.0
|
||
|
|
||
|
Animate ChargeMeter FgColor "Full Ubercharge Pulse" Linear 0.0 0.0001
|
||
|
}
|
||
|
|
||
|
//====================================================================================================================
|