Creating Multiple-Window Application with Unity3D

8.8k views Asked by At

I am making a simulation application. It requires to have multiple windows (application windows not GUI windows) that each window have the ability to interact ... like one for Camera view port , another for GUI , etc.

Is there any chance to do that with unity ???

2

There are 2 answers

1
jparimaa On BEST ANSWER

I think you should create multiple applications and use interprocess communications (http://msdn.microsoft.com/en-us/library/windows/desktop/aa365574(v=vs.85).aspx). As far as I know there is no direct way to tell Unity to create the application in multiple application windows.

1
Nathan Stocks On

Yes.

You can have as many cameras displaying different things in different parts of your window as you would like.

You can even make popup windows.

Everything should be able to interact.