diff --git a/Editor/Scripts/Internal/GeospatialCreatorHelper.cs b/Editor/Scripts/Internal/GeospatialCreatorHelper.cs index 6ffd2a1..fc1b39b 100644 --- a/Editor/Scripts/Internal/GeospatialCreatorHelper.cs +++ b/Editor/Scripts/Internal/GeospatialCreatorHelper.cs @@ -108,7 +108,10 @@ public static void OnToggle(bool toggleChecked) // disabled if they are present. } #else // Error state because this is an invalid version of Unity - throw new Exception("Geospatial Creator requires Unity 2021.3 or later."); + if (toggleChecked) + { + Debug.LogError("Geospatial Creator requires Unity 2021.3 or later."); + } #endif }