Type Alias: ExportUSDZ()
ExportUSDZ = () =>
Promise<boolean>
Function
Exports the current product configuration as a USDZ 3D model file.
This action generates a downloadable 3D model of the product with all current customizations applied. The USDZ format is Apple's AR file format optimized for iOS and macOS devices, making it perfect for AR previews, Quick Look integration, and Apple-ecosystem AR experiences.
Business value:
- Enables immersive AR experiences on iOS devices without requiring an app
- Allows customers to visualize products in their real environment
- Integrates with Apple's AR Quick Look for seamless AR viewing
- Supports high-quality materials and textures for photorealistic AR
- Enhances e-commerce with "View in Your Space" capabilities
Returns
Promise<boolean>
Promise resolving to true when the export is complete
Example
// Add an "export for Apple AR" button to your configurator
document.getElementById('export-usdz-button').addEventListener('click', () => {
window.mimeeqApp.actions.exportUsdz();
});
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