function refreshViewerFrame()
const iframe = document.getElementById('viewerFrame');
if (iframe)
iframe.src = iframe.src; // Forces reload
At its core, the ViewerFrame is the single, rendered image you see on your screen at any given moment. Think of it as a digital photograph taken by a virtual camera inside your 3D scene.
Pro Tip: Monitor your frame delta time (the time between ViewerFrames). In a “hot” system, this should be under 16ms for 60 FPS. viewerframe mode refresh hot
The specific phrase viewerframe mode refresh hot targets web-based interfaces for network cameras (specifically older models, often Axis cameras). function refreshViewerFrame()
const iframe = document