Advertisement
Guest User

HudAnimations_custom.txt

a guest
Apr 5th, 2016
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. //====================================
  2.  
  3. // Flash the medic charge hud when we have full charge
  4.  
  5. event HudMedicCharged
  6. {
  7. Animate ChargeLabel FgColor "Garm3nWhite" Linear 0.0 0.1
  8. Animate ChargeLabel FgColor "Blank" Linear 0.3 0.4
  9.  
  10. Animate ChargeMeter FgColor "Garm3nWhite" Linear 0.0 0.1
  11. Animate ChargeMeter FgColor "Blank" Linear 0.3 0.4
  12.  
  13. RunEvent HudMedicChargedLoop 0.6
  14. }
  15.  
  16. // call to loop HudHealthBonusPulse
  17. event HudMedicChargedLoop
  18. {
  19. RunEvent HudMedicCharged 0.0
  20. RunEvent ChargeLabel 0.0
  21. RunEvent ChargeMeter 0.0
  22. }
  23.  
  24. event HudMedicChargedStop
  25. {
  26. StopEvent HudMedicCharged 0.0
  27. StopEvent HudMedicChargedLoop 0.0
  28. StopEvent ChargeLabel 0.0
  29. StopEvent ChargeMeter 0.0
  30.  
  31. Animate ChargeLabel FgColor "Garm3nWhite" Linear 0.0 0.0001
  32.  
  33. Animate ChargeMeter FgColor "Garm3nWhite" Linear 0.0 0.0001
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement