I’m splitting screen to two parts each for a fullscreenrenderwindow like this:
fullScreenRenderer.getContainer().style.height = "50%"
fullScreenRenderer.resize()
fullScreenRenderer2.getContainer().style.height = "50%"
fullScreenRenderer2.getContainer().style.top = "50%"
fullScreenRenderer2.resize()
but, then addController:
fullScreenRenderer.addController(controlPanel);
fullScreenRenderer2.addController(controlPanel2);
works by just showing the second controller on the first fullscreenrenderer.
any thoughts? thanks