ofAnimationFraction

open fun ofAnimationFraction(model: AnimatableModel, animationName: String, fractions: Array<Float>): ObjectAnimator

Constructs and returns an ObjectAnimator clipping a ModelAnimation to a given set of fraction values.

Don't forget to call start

Return

The constructed ObjectAnimator

Parameters

model

The targeted model to animate

animationName

The string name of the animation. This name should correspond to the one defined and exported in the model. Typically the action name defined in the 3D creation software. getName

fractions

The fractions (percentage) (between 0 and 1)

See also


open fun ofAnimationFraction(model: AnimatableModel, animationIndex: Int, fractions: Array<Float>): ObjectAnimator

Constructs and returns an ObjectAnimator clipping a ModelAnimation to a given set of fraction values.

Don't forget to call start

Return

The constructed ObjectAnimator

Parameters

model

The targeted model to animate

animationIndex

Zero-based index for the animation of interest.

fractions

The fractions (percentage) (between 0 and 1)

See also


open fun ofAnimationFraction(model: AnimatableModel, animation: ModelAnimation, fractions: Array<Float>): ObjectAnimator

Constructs and returns an ObjectAnimator clipping a ModelAnimation to a given set of fraction values.

  • A single value implies that that value is the one being animated to starting from the actual value on the provided ModelAnimation.
  • Two values imply a starting and ending values.
  • More than two values imply a starting value, values to animate through along the way, and an ending value (these values will be distributed evenly across the duration of the animation).

The properties (time, frame,... position) are applied to the AnimatableModel This method applies by default this to the returned ObjectAnimator :

  • The duration value to the getDuration in order to match the original animation speed.
  • The interpolator to LinearInterpolator in order to match the natural animation interpolation.

Don't forget to call start

Return

The constructed ObjectAnimator

Parameters

model

The targeted model to animate

animation

The animation of interest

fractions

The fractions (percentage) (between 0 and 1)

See also