I have a big problem rendering my HUD build with the new UI System to a second screen. There is no problem to assign multiple 3D cameras to those two displays or select just one of them. But with the canvas, you have to assign one specific camera to it. I’m not able to map this camera to both screens. Is there anything I missed?
As far as I’m aware, the UI is limited to a single camera/screen at present.
However if you use a Screen Space - Camera camvas and render it to a texture instead of output, then you could then display that UI on multiple screens. Although, not sure how the input system would handle it. Likely this would only work for non-interactive UI.
This is pretty sad, cause I was removing all those NGUI scripts and behaviors to start with the new UI system. Now I have to go back to NGUI, because this is rendered as normal 3D visuals and works with multiple screens. Non-interactive UI is not an option, at least on the iPad I wanna have my events fired, when I’m touching UI components. If somebody else knows a way to get rid of that restriction, please let me know. I would appreciate that.
The only other possibility it to use multiple World Space Canvases which effectively are individual 3D elements, which you can draw anywhere within your 3D scene. So if you are rendering to multiple cameras, that should work. Same as with any other 3D element.