mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-01-10 19:02:08 +08:00
Fix issue with float struct check
This commit is contained in:
parent
2310f2f7ce
commit
b68145385c
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user