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

    Interface VideoResolution

    Defines the structure for a video resolution.

    Defines video resolution settings for the configurator display. Specifies viewport dimensions and rendering parameters.

    Video resolution interface: {width: number|null, height: number|null}. Received via videoResolutionChanged event when the pixel stream resolution changes. Use for responsive layout adjustments or displaying stream quality info.

    Subscribe to videoResolutionChanged to monitor stream resolution. Use to dynamically adjust UI overlay positioning, inform users about stream quality, or scale screenshot size requests proportionally.

    interface VideoResolution {
        height: number | null;
        width: number | null;
    }
    Index

    Properties

    Properties

    height: number | null
    width: number | null