You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 22, 2024. It is now read-only.
If the component type that SceneObjectField is looking for is present twice on the same object, the dropdown/popup portion of this field implementation fails and will always select the first of the two components.
This appears to be an issue with EditorGUILayout.Popup(selectedIndex, displayedOptions) ignoring duplicate entries. Solution would be to include a unique component to the string in displayedOptions, such as the index of the entry so there is never a duplicate string.