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

    Class ResumeStream

    Represents a command to resume the pixel streaming session. This class sends a message to the Metabox API to resume a paused or disconnected stream.

    Resumes the Unreal Engine pixel streaming connection after it has been paused, disconnected, or stopped due to inactivity (AFK timeout).

    Used to reconnect the 3D streaming session without a full page reload. Essential for 'Reconnect' or 'Resume' buttons shown when the stream is interrupted, e.g., after an idle timeout or network disruption.

    Call api.sendCommandToMetabox(new ResumeStream()). No parameters. Resumes the existing streaming session — does not reinitialize the configurator or reset product/environment state.

    import { ResumeStream, Communicator } from '@3dsource/metabox-front-api';
    window.env3DSource.apiReady = (api: Communicator) => {
    api.sendCommandToMetabox(new ResumeStream());
    };
    Index

    Constructors

    Properties

    Constructors

    Properties

    data: ToMetaBoxMessageEnvelope

    The message envelope populated by subclass constructors and sent via Communicator.sendCommandToMetabox.