Search Unity

[bug] deletion of the asset with the same asset group name changes addressable settings

Discussion in 'Addressables' started by nik_d, Jun 12, 2019.

  1. nik_d

    nik_d

    Joined:
    Apr 27, 2018
    Posts:
    66
    workaround: in AddressableAssetSettings.cs
    CheckForGroupDataDeletion(...)

    Code (CSharp):
    1.                 //**addressables - fix: delete group on asset removal, not just any deletion of file/folder with the same name
    2.                 //if (group.Name == fileName)
    3.                 if (groupsRoot + group.Name + ".asset" == str)