I have a windows unity app and I also have two monitors, every time I launch the app I would like the window to appear from the screen in which I clicked it from, screen 0 or 1. Any advice?
Asked
Active
Viewed 444 times
1 Answers
0
Well, you can make another program to track in which monitor you clicked, and then launch your unity app sending this information.
Or you can simply specify in Unity in which monitor you want to display it, via code or just on the start screen:
Edit: To activate the Resolution Dialog (in versions below 2019.3) open your project->Project Settings->Resolution and Presentation->Display Resolution Dialog->Enabled
It's worth noting the warning box, which informs that in further versions of Unity, this will be removed, like in the 2019.3. More info here.

Lotan
- 4,078
- 1
- 12
- 30
-
I dont have that start screen, is there a way to enable that? – TheGuy920 Jun 06 '20 at 03:18
-
@TheGuy920 I've updated the answer, tell me if it helps – Lotan Jun 06 '20 at 08:40
-
Yes thank you so much! – TheGuy920 Jun 07 '20 at 19:02
-
@TheGuy920 you're welcome! Remember to mark the answer as correct as other people can find it fast! ^^ – Lotan Jun 07 '20 at 19:07