@rendley/sdk - v1.15.5
    Preparing search index...

    Interface PropertyKeyframe

    Single keyframe on a property animation track.

    interface PropertyKeyframe {
        handleIn: BezierHandle;
        handleOut: BezierHandle;
        hold?: boolean;
        time: number;
        value: PropertyValue;
    }
    Index

    Properties

    handleIn: BezierHandle

    Incoming bezier handle (controls curve arriving at this keyframe)

    handleOut: BezierHandle

    Outgoing bezier handle (controls curve leaving this keyframe)

    hold?: boolean

    If true, holds this value until the next keyframe (no interpolation)

    time: number