MEMBRANE SYSTEM READY
SYSTEM ENGINE
function toggleCameraLayout() {
const cam = document.getElementById('cam');
if (!cam) return;
// Toggle between full-screen and top-right corner
if (cam.style.width === '100vw') {
// Switch to corner
cam.style.cssText = 'position:fixed; top:20px; right:20px; width:300px; height:200px; z-index:9998; border:2px solid white; object-fit:cover;';
} else {
// Switch to full-screen
cam.style.cssText = 'position:fixed; top:0; left:0; width:100vw; height:100vh; z-index:1; object-fit:cover;';
}
}