Skip to content
This repository was archived by the owner on May 9, 2025. It is now read-only.

Commit fcf1021

Browse files
Fixed Unity's built-in property drawer not being recognized by GenericPropertyDrawer
1 parent 29565e9 commit fcf1021

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Assets/SO Architecture/Editor/SOArchitecture_EditorUtility.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ public static bool SupportsMultiLine(Type type)
100100
}
101101
public static bool HasPropertyDrawer(Type type)
102102
{
103+
if (HasBuiltinPropertyDrawer(type))
104+
return true;
105+
103106
if (_propertyDrawerGraph == null)
104107
CreatePropertyDrawerGraph();
105108

0 commit comments

Comments
 (0)