Animation.IsPlaying Manual     Reference     Scripting  
Scripting > Runtime Classes > Animation
Animation.IsPlaying

function IsPlaying (name : String) : boolean

Description

Is the animation named name playing?

JavaScript
// Plays an animation only if we are not playing it already.
function OnMouseEnter() {
if (!animation.IsPlaying("mouseOverEffect"))
animation.Play("mouseOverEffect");
}