Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Wish I could upvote or emphasize this post to others somehow?
Please Flanne fix your stuff.
Or if you don't want to download something you can right click anywhere on the desktop , click display settings , go to your monitor display settings the screens 1 and 2 , and just pull 2 way off and to the upper right, they will snap back together but they will only be connected diagonally at the corner now so moving to the other monitor accidentally will be harder.
Agreed that the game should just natively support this. I've died twice now from cursor out of screen issues, one just now at the final boss on the first stage after 20 minutes, super frustrating to die to this. This is actually super easy to implement in Unity. Just add a toggle to your options menu called something like "Lock Cursor to Game Window" and have it call a function passing a dynamic bool from the toggle element and have an if/switch statement that sets:
Cursor.lockState = CursorLockMode.Confined; if true
and
Cursor.lockState = CursorLockMode.None; if false.
Boom done! I have this in my games if you guys want a copy of my script.
Epic version.