// plugin dialog animation script // // // commands: // Animate // variables: // FgColor // BgColor // Position // Size // Blur (hud panels only) // TextColor (hud panels only) // Ammo2Color (hud panels only) // Alpha (hud weapon selection only) // SelectionAlpha (hud weapon selection only) // TextScan (hud weapon selection only) // // interpolator: // Linear // Accel - starts moving slow, ends fast // Deaccel - starts moving fast, ends slow // // RunEvent // starts another even running at the specified time // // StopEvent // stops another event that is current running at the specified time // // StopAnimation // stops all animations refering to the specified variable in the specified panel // // StopPanelAnimations // stops all active animations operating on the specified panel // // // event PluginMessageShow { Animate PluginHudMessage Alpha 255 Linear 0.0 0.5 } event PluginMessageSmall { Animate PluginHudMessage Size "40 32" Linear 0.0 1.5 } event PluginMessageHide { Animate PluginHudMessage Alpha 0 Linear 0.0 1.0 }