I’m working on a UPM package that I would like to re-use internally. It currently makes use of Resources.Load<> to dynamically load prefabs, materials, and other resources. Is there a way for me to use Addressables in a way that automatically plugs into whatever project my UPM package is added to? Can I define my own Addressable group to contain all of my package’s dynamic resources? Can I then have the project automatically add this new Addressable group when my package is added to the project?
What is the correct way for packages to manage/load resources dynamically?
–
Casey