Animation.IsPlaying
IsPlaying(name: string): bool;
Description

Is 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");
	}