For debugging purposes, you may require to pause the game on an error so that you can inspect the game situation. For this reason, you can follow these steps:
1. Write an error log in block of the code
Debug.LogError("Exception occured");
And before running the editor open console and hit Error Pause in the console log.
The game will pause as any error occurred in the console.
Debug.LogError("Exception occured");
And before running the editor open console and hit Error Pause in the console log.
The game will pause as any error occurred in the console.
0 Comments