From 5dbaf3f94e0c7a68ea0a822c46cee8645f7b0659 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sun, 11 Jan 2026 23:23:04 +0100 Subject: [PATCH] Fix to not crash after unhandled exception #3570 --- Source/Engine/Scripting/Scripting.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Engine/Scripting/Scripting.cs b/Source/Engine/Scripting/Scripting.cs index 7f9f2980c..229e411f3 100644 --- a/Source/Engine/Scripting/Scripting.cs +++ b/Source/Engine/Scripting/Scripting.cs @@ -137,8 +137,8 @@ namespace FlaxEngine { Debug.LogError($"Unhandled Exception: {exception.Message}"); Debug.LogException(exception); - if (e.IsTerminating && !System.Diagnostics.Debugger.IsAttached) - Platform.Fatal($"Unhandled Exception: {exception}"); + //if (e.IsTerminating && !System.Diagnostics.Debugger.IsAttached) + // Platform.Fatal($"Unhandled Exception: {exception}"); } }