Hello,
What I'm trying to do is Load separate GUI scene file into game play scene file with "Additive" check is 'On'.
Both scene files have cameras, and the camera from GUI scene is not main camera (tag is changed to 'Untagged' and depth is -2 while main camera of play scene file's depth is '-1'.)
Loading Gui scene into Play scene is successful, But GUI camera doesn't work.
The reason why I made separate GUI scene file is, I'm using 2DtoolKit Unity plugin to reducing Draw Calls instead of using Unity's basic GUI texture. Moreover, I wanted GUI images don't have perspective view. (GUI camera is setting as Orthographic.)
Am I missing steps for activate two cameras in One Scene, or is this basically impossible? If I miss, what Actions should be used in the scene? Or is there different way rendering two cameras in one scene?
Thank you.