arimger / Unity-Editor-Toolbox

Tools, custom attributes, drawers, hierarchy overlay, and other extensions for the Unity Editor.
MIT License
1.72k stars 125 forks source link

[ReferencePicker] not working on a list of interface #66

Closed YouKiat closed 1 year ago

YouKiat commented 1 year ago
[ReferencePicker]
[SerializeReference]
private List<Interface> list;

image

arimger commented 1 year ago

It looks like you are using the default Unity list, it's not supporting ReferencePickerAttribute. You can use ReorderableListAttribute to fix it.

YouKiat commented 1 year ago

i see, thanks.