Is there a way I can forcefully crash my own game in Unity? A code where it will just crash the application, and not just close the game. I want the “crash error message” to appear when I execute the code.
Thanks!
Is there a way I can forcefully crash my own game in Unity? A code where it will just crash the application, and not just close the game. I want the “crash error message” to appear when I execute the code.
Thanks!
void Update()
{
while (true)
{
Debug.Log(“Going down”);
}
}