Skip to main content

Class: AnimationExitTimeCondition

Defined in: animations/types/AnimationCondition.ts:175

Union type representing all possible animation conditions.

Implements

Constructors

Constructor

new AnimationExitTimeCondition(name, exitTime): AnimationExitTimeCondition

Defined in: animations/types/AnimationCondition.ts:180

Parameters

name

string

exitTime

number = 1

Returns

AnimationExitTimeCondition

Properties

exitTime

readonly exitTime: number

Defined in: animations/types/AnimationCondition.ts:178


name

name: string

Defined in: animations/types/AnimationCondition.ts:176

Implementation of

AnimationCondition.name

Methods

satisfies()

satisfies(inputs): boolean

Defined in: animations/types/AnimationCondition.ts:190

Method to check the condition based on the input value.

Parameters

inputs

AnimationInputs

Returns

boolean

Whether the condition is met based on the input value.

Implementation of

AnimationCondition.satisfies