Skip to main content

Type Alias: ExportGLB()

ExportGLB = () => Promise<boolean>

Function

Exports the current product configuration as a GLB 3D model file.

This action generates a downloadable 3D model of the product with all current customizations applied. The GLB format is widely supported by modern 3D software, AR applications, and online platforms, making it ideal for virtual staging, further design work, or digital presentations.

Business value:

  • Allows customers to use configured products in their own design software
  • Enables architects and designers to integrate products into their projects
  • Supports AR experiences on mobile devices or headsets
  • Facilitates virtual staging for real estate and interior design

Returns

Promise<boolean>

Promise resolving to true when the export is complete

Example

// Add an "export 3D model" button to your configurator
document.getElementById('export-3d-button').addEventListener('click', () => {
window.mimeeqApp.actions.exportGlb();
});

Emits

mimeeq-3d-before-export-scene When the export process begins

Emits

mimeeq-3d-after-export-scene When the export is complete and file download starts