I have created an asset bundle which has sprites in folder hierarchy. What I want is that I get array of these sprites by using the parent folder name. Is this possible?
I can get single sprite using
AssetBundle.LoadAsset<Sprite>("spriteName.png");
but I want array of sprites using the parent folder name. How can I do this?
Thank you