home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / DVDStar / Akce / Half-Life2 / install-at2v4release2005.exe / AntTroopDuece / scripts / plugin_animations.txt < prev    next >
Text File  |  2005-05-08  |  1KB  |  53 lines

  1. // plugin dialog animation script
  2. //
  3. //
  4. // commands:
  5. //    Animate <panel name> <variable> <target value> <interpolator> <start time> <duration>
  6. //        variables:
  7. //            FgColor
  8. //            BgColor
  9. //            Position
  10. //            Size
  11. //            Blur        (hud panels only)
  12. //            TextColor    (hud panels only)
  13. //            Ammo2Color    (hud panels only)
  14. //            Alpha        (hud weapon selection only)
  15. //            SelectionAlpha  (hud weapon selection only)
  16. //            TextScan    (hud weapon selection only)
  17. //
  18. //        interpolator:
  19. //            Linear
  20. //            Accel - starts moving slow, ends fast
  21. //            Deaccel - starts moving fast, ends slow
  22. //
  23. //    RunEvent <event name> <start time>
  24. //        starts another even running at the specified time
  25. //
  26. //    StopEvent <event name> <start time>
  27. //        stops another event that is current running at the specified time
  28. //
  29. //    StopAnimation <panel name> <variable> <start time>
  30. //        stops all animations refering to the specified variable in the specified panel
  31. //
  32. //    StopPanelAnimations <panel name> <start time>
  33. //        stops all active animations operating on the specified panel
  34. //
  35. //
  36. //
  37.  
  38.  
  39. event PluginMessageShow
  40. {
  41.     Animate PluginHudMessage Alpha    255 Linear 0.0 0.5
  42. }
  43.  
  44. event PluginMessageSmall
  45. {
  46.     Animate PluginHudMessage Size    "40 32"    Linear 0.0 1.5
  47. }
  48.  
  49. event PluginMessageHide
  50. {
  51.     Animate PluginHudMessage Alpha    0 Linear 0.0 1.0
  52. }
  53.