- Home /
 
How to force my *.exe to crash
How can I force my *.exe build to crash, but without this popup 
Thanks ^^
 
                 
                photo-2017-09-12-17-45-38.jpg 
                (11.9 kB) 
               
 
              
               Comment
              
 
               
              You could make an infinite loop in a monobehavior, something like
 private void Start()
 {
     int x = 0;
     while (x == 0) ;
 }
 
                  It'll crash your exe, not sure about the error popup.
Answer by Litleck · Sep 12, 2017 at 03:05 PM
I think theres a way in c# to just close it appearing to crash.
Your answer
 
             Follow this Question
Related Questions
Is it possible to create a game build in unity’s runtime? (I’m making something like terror engine) 0 Answers
Unity crashes on building project 2 Answers
Windows standalone build not working as it should 0 Answers
Standalone CTD (Access Violation) - Making sense of "error.log" files? 0 Answers
Extra files after building? 0 Answers