How to disable game crash window?

Hi,

When a game crashes, Unity pops up a window titled “Oops!” with “The game crashed” etc… text.

Anyone know if its possible to disable this window (so the game just exits silently when it crashes)?

Thanks!

Fixing the crash is the right way to go. Pretending it did not happen does not make things any better.

:slight_smile: Yes, but I’m working in a specific deployment scenario where the game is launched and controlled by an automated application. I need the game to quit silently so this application can relaunch it without user intervention in case a crash occurs.

Try passing command line argument -silent-crashes

1 Like

That’s it, thanks!