diff --git a/src/UI/InteractiveValues/InteractiveFloatStruct.cs b/src/UI/InteractiveValues/InteractiveFloatStruct.cs index 689c650..81a1bef 100644 --- a/src/UI/InteractiveValues/InteractiveFloatStruct.cs +++ b/src/UI/InteractiveValues/InteractiveFloatStruct.cs @@ -61,6 +61,9 @@ namespace UnityExplorer.UI.InteractiveValues if (!type.IsValueType) return false; + if (string.IsNullOrEmpty(type.AssemblyQualifiedName)) + return false; + if (_typeSupportCache.TryGetValue(type.AssemblyQualifiedName, out bool ret)) return ret;