How Can i list the Files Available in the Resource Folder

Hi all

I am new bie to unity. I have images in the resource folder. How can i list of files available in the Resource folder in the array. and then i have to check the which images are clicked? how can i do it…

Not sure you can, and you dont want to either. Its better to make a script that has a serialized array of Texture2D, you can just link them in.

You can’t do it at runtime. What you can do is write an editor script that makes a manifest file of your Resources directory and then at runtime read that instead.