How to make several game windows on one display?

We are working over some poker project. And we chose the Unity for client develop. And now we have some issue, how to make several, independent game window. We have Lobby window, where player log in and chooses tables. And then, this selected table should be opened in new window. We need to be able besides Main Lobby window to open six additional table in independent window, which also will have different from mainLobbyWindow screen resolution. Also, that is important, all these window must have windowed mode, not
fullscreen. Something like that.

Is that to able make in Unity? Thanks in advance for your help.

The short answer is yes you could do this in Unity. Your table windows would be UI panels, decorated to look like windows above, and the main lobby are would just be the game window running in windowed mode.

Regarding whether Unity is a good choice for this is more complicated. Poker applications are pretty simplistic from a user experience standpoint (typically limited animation, etc.) so why you would want to use a game engine for this, rather than just built it using Windows WPF, for example, is unclear to me.

1 Like

Thank you ChazBass for your help.