So I'm loading a collection of Textures from an AssetBundle and storing them in a List, the user chooses one of these textures and then they're no longer needed.
Obviously I want to get rid of the unused Textures, but Destroying them as objects causes some strange data loss. If I set the list to null, will it release those textures that used to be in it from memory? Or is there another recommended practice?
↧