Hello,
I’ll load about 20 to 200 assets with addressables from a pool of 60,000 and growing.
How do you link them all?
Addressable list items do not allow drag and drop of multiple items like normal lists.
My options are:
- Print out my addressable string location like: Assets/18SeamlessNormalMaps512Free/PNGs/W050.png
I could load em without addressables, and have my Debug.Log print output I could copy and put into code.
- I could flatten all my directories, and write a java script to name stuff 1,2,3,4,5,6,etc.
Both of these solutions will work, but I want my users to easily drag and drop thousands of assets in to be addressable too.
Whats the proper way of linking tens of thousands of addressable assets?