Is there a way to force full screen?
Viewing post in Rival Ultimate Steel Hand (Prototype) comments
Unity games can be run with Arguments
-screen-fullscreen 1 -screen-width 1920 -screen-height 1080
To do this on Windows the easiest way is:
- Right-click the game
.exe - Create shortcut
- Right-click the shortcut → Properties
- In the Target field, append your args after the quotes:
1920 x 1080 (1080p monitor)
"C:\Path\To\Game.exe" -screen-width 1920 -screen-height 1080 -screen-fullscreen 1
2560x1440
"C:\Path\To\Game.exe" -screen-width 2560 -screen-height 1440 -screen-fullscreen 1
3840x2160 (4k monitor)
"C:\Path\To\Game.exe" -screen-width 3840 -screen-height 2160 -screen-fullscreen 1