Hell guys I am pretty much new to unity.What i am trying to do is have 2 Cameras . One from the top View and other from the side view .Top View Camera should be shown in the Top-Right corner and the rest of the screen should be occupied with side view camera.I tried following the steps given this link .It shows in the GAME view but when i run i am not able to see the side camera . Can anyone help me with this.
For the top view camera you should set the normalized view port much like is explained in the answer you posted.
Then take a look at the Depth variable of both cameras. You want to make sure that the camera you want to show in the top right is at a depth greater than the camera you want to fill the rest of the screen with.
So topRightCamera.depth = 1 and mainCamera.depth = -1