Key frame that holds the progress of the camera animation.
export interface ProgressKeyFrame { alpha: number; easingFunc?: EasingType; timeSeconds: number;} Copy
export interface ProgressKeyFrame { alpha: number; easingFunc?: EasingType; timeSeconds: number;}
Value to denote how far along the curve the camera will be. Values are [0.0, 1.0] inclusive.
Optional
The optional easing type that the frame will use for position.
Time value that the camera will be at the given alpha.
Key frame that holds the progress of the camera animation.
Source