AnimationKeyframe: {
    interpolation?: AnimationInterpolation;
    time: number;
    value: V;
}

A single keyframe: a time and a value

Type Parameters

  • V

Type declaration

  • Optionalinterpolation?: AnimationInterpolation

    Interpolation mode for this track (default: "linear"). Note: Three.js applies one mode per track; the first keyframe's mode is used.

  • time: number

    Time in seconds

  • value: V

    The value at this time