Skip to content

Commit 945dc0b

Browse files
committed
Fix abstract type drawing
1 parent 9cb68fb commit 945dc0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Editor/Utilities/TriUnitySerializationUtilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static bool IsSerializableByUnity(FieldInfo fieldInfo)
3535

3636
public static bool IsTypeSerializable(Type type, bool allowCollections = true)
3737
{
38-
if (type == typeof(object) || type.IsAbstract || type.IsInterface)
38+
if (type == typeof(object) || type.IsInterface)
3939
{
4040
return false;
4141
}

0 commit comments

Comments
 (0)