Put your folder in the "Resources" folder. For instance:Assets/Textures/Resources/
Then you can do this:
private Object[] textures;
void Awake()
{
textures = Resources.LoadAll("Path");
}
You must save them as Objects. However, if you want to use them later, you can do something like this.
texture = textures[i] as Texture;
source
share