How do I create a GUI that the user can see 2 points of view (like using 2 cameras)??
Welcome to the forums!
This has nothing to do with the GUI in particular, at least in the realm of “how do I use two cameras?” end of things. Add multiple cameras to your scene, then set each camera’s depth and normalized view port rect coordinates (bottom-left is 0,0, upper-right is 1,1) so they’re both visible as you like. You have them split-screen style (side-by-side or one on top of the other), or you can have picture-in-picture, etc.
Then, once that’s done you can draw GUI elements as necessary, but the act of setting up multiple cameras is separate from any GUI code.
Thx! That solved my problem =D