Skip to main content

Type Alias: ExportOBJ()

ExportOBJ = () => Promise<boolean>

Function

Exports the current product configuration as an OBJ 3D model file.

This action generates a downloadable 3D model in OBJ format, which is compatible with virtually all 3D modeling software. OBJ is particularly valuable for design workflows that require material information and is supported by legacy systems.

Business value:

  • Provides compatibility with older design software and systems
  • Preserves material definitions for realistic rendering in third-party applications
  • Enables integration with established design workflows and archives
  • Supports custom product visualization in marketing materials

Returns

Promise<boolean>

Promise resolving to true when the export is complete

Example

// Add an "export for design software" button
document.getElementById('export-for-design-button').addEventListener('click', () => {
window.mimeeqApp.actions.exportObj();
});

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