Skip to main content

Type Alias: ToggleApplyOptionsForAll()

ToggleApplyOptionsForAll = () => Promise<void>

Function

Toggles whether option changes apply to all products on the scene.

This function controls whether changing options on one product automatically applies compatible changes to all other products in the scene. This is useful for creating a unified visual theme across an entire design.

When enabled, changing an option like "Oak finish" on one product will apply Oak finish to all other products that have a compatible finish option, ensuring visual harmony across the entire design.

Returns

Promise<void>

Example

// Toggle global style synchronization
document.getElementById('sync-all-btn').addEventListener('click', () => {
window.mimeeqApp.actions.toggleApplyOptionsForAll();
});