Skip to main content

Type Alias: UnfreezeCanvasScrolling()

UnfreezeCanvasScrolling = () => Promise<void>

Function

Re-enables normal scrolling and zooming interactions on the 3D view.

This action restores the standard behavior where mouse wheel, trackpad scrolling, and touch gestures can zoom and adjust the camera. Use this to return to the default interactive viewing experience after previously freezing camera controls.

Business value:

  • Returns to natural interaction after guided product experiences
  • Allows customers to freely explore products at their own pace
  • Re-enables intuitive camera controls for detailed product inspection
  • Complements guided tours that temporarily restrict camera movement

Returns

Promise<void>

Example

// Restore normal camera controls when exiting presentation mode
document.getElementById('exit-presentation').addEventListener('click', () => {
window.mimeeqApp.actions.unfreezeCanvasScrolling();
});