Creating Multiple-Window Application with Unity3D
Asked Answered
B

2

2

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 ???

Barrett answered 1/12, 2013 at 8:57 Comment(3)
Something like this should get you started.Finis
@Finis I meant Application Windows .. this link is about GUI windows.Barrett
It would help if you included a mockup of what you are trying to achieve. The term "GUI windows" is ambiguous and could refer to multiple viewports or the Unity's GUI.Window widgets.Finis
B
4

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.

Barto answered 3/12, 2013 at 7:40 Comment(1)
Yes that's the only possible answer .. I Did that through unity built in network . But i am afraid of performance issues .. opening 3 or 4 empty unity application Simultaneously rise cpu usage up to 90% . Whats happen when they contain other stuff ????Barrett
U
1

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.

Updraft answered 1/12, 2013 at 21:59 Comment(1)
As i said ... I meant Application Windows .. Not GUI WindpwsBarrett

© 2022 - 2024 — McMap. All rights reserved.