Animation.IsPlayingfunction IsPlaying (name : string) : boolDescriptionIs the animation named name playing?
// Plays an animation only if we are not playing it already.
function OnMouseEnter() { if (!animation.IsPlaying("mouseOverEffect")) animation.Play("mouseOverEffect"); } |
