For some reason, throwing an uncaught exception doesn't abort the application (run in editor), i.e. all of the following code gets executed:
function Awake()
{
throw new System.Exception("Die, fiend!");
}
function Start()
{
print("Still alive");
}
Does anybody know why? And how do I make it abort?
↧