AnimatorState

public enum AnimatorState: Equatable

The state of an Animator instance.

  • The animator has not yet started.

    Declaration

    Swift

    case Pending
  • The animator is currently running.

    Declaration

    Swift

    case Running
  • The animator has stopped running.

    Declaration

    Swift

    case Completed(AnimatorResult)