Type Alias: ToggleApplyOptionsForInstances()
ToggleApplyOptionsForInstances = (
productId
) =>Promise
<void
>
Function
Toggles whether option changes apply to all instances of a specific product on the scene.
This function controls whether changing options on one instance of a product automatically applies the same changes to all other instances of the same product in the scene. This is useful for maintaining consistency across repeated elements.
When enabled, all instances of the same product will update simultaneously when any one instance is modified, ensuring visual consistency.
Parameters
productId
string
ID of the product type to toggle synchronization for
Returns
Promise
<void
>
Example
// Toggle synchronized styling for all cabinet instances
document.getElementById('sync-cabinets-btn').addEventListener('click', () => {
window.mimeeqApp.actions.toggleApplyOptionsForInstances('cabinet-product-id');
});
Fires
@mmq-toggle-apply-styles-instance