This is the old Animancer v7.4 documentation. Click here for the latest version.

AnimancerState.

IsPlaying Property

Summary

Is the Animancer.AnimancerState.Time automatically advancing?
Assembly
Animancer.dll
Namespace
Animancer
Containing Type
AnimancerState

Syntax

public bool IsPlaying { get; set; }

Examples

 void IsPlayingExample(AnimancerComponent animancer, AnimationClip clip)
 {
     var state = animancer.States.GetOrCreate(clip);

     if (state.IsPlaying)
         Debug.Log(clip + " is playing");
     else
         Debug.Log(clip + " is paused");

     state.IsPlaying = false;// Pause the animation.

     state.IsPlaying = true;// Unpause the animation.
 }

Value

Type Description
bool