Skip to content

Documentation / scene / AnimationTimelineActiveDisposition

Type Alias: AnimationTimelineActiveDisposition

AnimationTimelineActiveDisposition = "stop" | "keep" | { fadeOut: number; }

Defined in: libs/scene/src/animation/animationtimeline.ts:18

How a response disposes of the timeline's currently active playbacks/steps.

  • 'stop' (default): stop the active steps before running the response.
  • 'keep': leave the active steps running; the response runs concurrently.
  • { fadeOut }: stop the active steps with a fade-out.

Released under the MIT License.