Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,23 @@ public class AssetPickerDrawer : PropertyDrawer
{
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
{
if (fieldInfo == null)
{
// If fieldInfo is null, draw the property field as is.
EditorGUI.PropertyField(position, property, label);
return;
}

var assetType = fieldInfo.FieldType;
if (assetType.IsUnityCollection())
assetType = assetType.GetElementType();

if (assetType == null)
{
// If assetType is null, draw the property field as is.
EditorGUI.PropertyField(position, property, label);
return;
}

var a = fieldInfo.GetAttribute<AssetPickerAttribute>();

Expand Down