@3dsource/metabox-front-api
    Preparing search index...

    Interface Timecode

    Represents a low-bandwidth entity used in showcases in LBM mode.

    Timecode interface for showcase timeline management. Tracks timing and playback position information.

    Playback position tracking for showcase animations. Contains current timestamp within the animation timeline. Use for building progress bars, time displays, or syncing external content to showcase playback.

    Access timecode data from showcase status events during playback. Use to update progress indicators in custom playback UIs. Combine with showcaseStatusChanged to build full media player controls for product demo presentations.

    interface Timecode {
        __typename: "Timecode";
        duration: number;
        time: number;
    }
    Index

    Properties

    __typename: "Timecode"

    Represents object typename (as a string, flexible type).

    duration: number

    Duration of the entity display.

    time: number

    Time marker for the entity.