I’m creating a custom editor window where I need to display AddressableGroups button that highlights a corresponding entry in the Addressables Groups window.
I can select an asset with
Selection.activeObject = group;
but it doesn’t select a corresponding entry, only a group asset in the project window.
I need something like this field in the default inspector window:
It seems that AddressableAssetsSettingsGroupEditor.SelectGroup(AddressableAssetGroup group, bool fireSelectionChanged) is the function I need but this class is Internal and I can’t access it from my assembly.