The Camera Animation Configuration groups the different settings used to define the camera animation behavior

interface CameraAnimationConfig {
    easingFunction: EasingFunction;
    easingMode: EasingMode;
    loopMode: AnimationLoopMode;
    maxFPS: number;
}

Properties

easingFunction: EasingFunction

A custom mathematical formula for animation

CubicEase

easingMode: EasingMode

The easing mode of the easing function

The loop mode of the animation

maxFPS: number

The frames per second of the animation

60