Fix abstract type drawing

This commit is contained in:
VladV 2023-06-15 13:44:33 +04:00
parent 9cb68fb6ed
commit 945dc0bad9

View File

@ -35,7 +35,7 @@ namespace TriInspector.Utilities
public static bool IsTypeSerializable(Type type, bool allowCollections = true)
{
if (type == typeof(object) || type.IsAbstract || type.IsInterface)
if (type == typeof(object) || type.IsInterface)
{
return false;
}