How can I show split screen or multiple camera views at the same time?
Asked Answered
B

1

0

hi, I have created a room with furniture, I walked inside the room (cam 1 first person), and view the model from the top in another window with another cam (cam 2 ortographic or 3\4). is possible to have two windows in a single window, two cam view in a single window? tnx

Bathysphere answered 6/6, 2023 at 2:7 Comment(3)

Edited question title for clarity.

Grallatorial

Dupe question: http://answers.unity3d.com/questions/689/how-to-make-a-split-screen-2-cameras-rendering-at-same-time/

Mistrust

Anyone can help me? I split my Cameras then my problem is about MouseDown - I can't press the Guitexture properly. But when I didn't split it or back in the full screen - it's working any answer please?

Armorer
G
0

Yes it is possible. Just use the "Normalized View Port Rect" setting of each camera, to set each camera to fill the portion of the screen that you want.

Simply create both cameras, and then - for example - a side-by-side view (split screen vertical) could be achieved by setting:

Left Camera - Normalized View Port Rect:

  • X : 0
  • Y : 0
  • Width : 0.5
  • Height : 1

Right Camera - Normalized View Port Rect:

  • X : 0.5
  • Y : 0
  • Width 0.5
  • Height 1

And a split screen horizontal view (one view on top of another) could be achieved with these settings:

Top Camera - Normalized View Port Rect:

  • X : 0
  • Y : 0.5
  • Width : 1
  • Height : 0.5

Bottom Camera - Normalized View Port Rect:

  • X : 0
  • Y : 0
  • Width 1
  • Height 0.5
Grallatorial answered 25/7, 2023 at 19:51 Comment(2)

[3869-unity_tut_camsplit.jpg|3869] as you see here : split camera , you need 2 cameras , and you modify values of the normalized view port

Antipas

what if I want the top camera facing the bottom camera,in opposite direction,is there a way without touching the rotation axis

Pair

© 2022 - 2024 — McMap. All rights reserved.