Hello everyone I have this particular problem where I don’t know how to load and reference a texture in a prototype I’m making.
I want to be able to procedurally generate level, depending on a texture. This texture is located on a folder where there is other informations about the level (name, size, etc.), stored in JSON text files. Loading those files is easy using deserialization. There could be hundred of different levels, so hundred of folders containing different textures.
How can I load and reference a particular texture given the correct folder among the others?
Is using many “Resources” folders the only solution?