Can I load Textures outside the resources folder?
I want to load Images in a Specific Folder
You could load from a webpage of from the hardrive Load Texture at Run time from file - Questions & Answers - Unity Discussions But that has some limitations
If you simply want better organization of the files, the texture does not need to be directly in the Resources folder. You can do Assets\Resources\Textures\Images
or Assets\Images\Resources
All assets that are in a folder named
“Resources” anywhere in the Assets
folder can be accessed via the
Resources.Load functions. Multiple
“Resources” folders may exist and when
loading objects each will be examined
.