Skip to main content

Type Alias: ClearScene()

ClearScene = () => Promise<void>

Function

Completely clears the modular scene, removing all products and resetting to an empty state.

This function removes all products from the modular scene and resets all scene-related state, returning to a fresh starting point. If a starter configuration is defined for the modular product, that configuration will be loaded; otherwise, an empty scene is created.

Clear scene is useful for starting over completely, abandoning the current design to begin a new one from scratch.

Returns

Promise<void>

Example

// Add a "Clear All" button to your interface
document.getElementById('clear-scene-btn').addEventListener('click', () => {
if (confirm('Are you sure you want to clear the entire scene? This cannot be undone.')) {
window.mimeeqApp.actions.clearScene();
}
});

Emits

mimeeq-modular-clear-scene This event is fired when ClearScene button was clicked

Emits

mimeeq-internal-clear-scene Internal event conditionally triggered during scene clearing