Variable MetaboxBasicConfiguratorActionsConst
MetaboxBasicConfiguratorActions: {
applyZoom: "applyZoom";
getCallToActionInformation: "getCallToActionInformation";
getCamera: "getCamera";
getPdf: "getPdf";
getScreenshot: "getScreenshot";
hideMeasurement: "hideMeasurement";
initShowcase: "initShowcase";
metaboxConfig: "metaboxConfig";
pauseShowcase: "pauseShowcase";
playShowcase: "playShowcase";
resetCamera: "resetCamera";
resumeStream: "resumeStream";
sendCommandToUnreal: "sendCommandToUnreal";
setCamera: "setCamera";
setEnvironment: "setEnvironment";
setEnvironmentMaterialById: "setEnvironmentMaterialById";
setProduct: "setProduct";
setProductMaterialById: "setProductMaterialById";
showEmbeddedMenu: "showEmbeddedMenu";
showMeasurement: "showMeasurement";
showOverlayInterface: "showOverlayInterface";
stopShowcase: "stopShowcase";
} = ...
Type Declaration
ReadonlyapplyZoom: "applyZoom"
ReadonlygetCamera: "getCamera"
ReadonlygetPdf: "getPdf"
ReadonlygetScreenshot: "getScreenshot"
ReadonlyhideMeasurement: "hideMeasurement"
ReadonlyinitShowcase: "initShowcase"
ReadonlypauseShowcase: "pauseShowcase"
ReadonlyplayShowcase: "playShowcase"
ReadonlyresetCamera: "resetCamera"
ReadonlyresumeStream: "resumeStream"
ReadonlysendCommandToUnreal: "sendCommandToUnreal"
ReadonlysetCamera: "setCamera"
ReadonlysetEnvironment: "setEnvironment"
ReadonlysetEnvironmentMaterialById: "setEnvironmentMaterialById"
ReadonlysetProduct: "setProduct"
ReadonlysetProductMaterialById: "setProductMaterialById"
ReadonlyshowMeasurement: "showMeasurement"
ReadonlyshowOverlayInterface: "showOverlayInterface"
ReadonlystopShowcase: "stopShowcase"
Registry of all action identifiers that can be sent from the host application to the Metabox Basic Configurator. Each key maps to a string used as the
actionfield in the postMessage envelope.What does it unlock?
Variable containing all available action names. Interface listing all actions that the configurator supports.
Practical Application
Master action registry object — all supported configurator action names. Invaluable reference for building admin dashboards, permission systems, or feature-availability displays.
AI Coding Best Practices
Iterate this object to dynamically build action dropdowns, command palettes, or feature checklists in admin tools. Each key is an action name, value is its description. Excellent reference for AI coding agents to understand the full command vocabulary available.