Load a bunch of images from a folder. There's gotta be a way!

Hi,

I have an app that needs to cycle through a big list of high res images.

Including the folder of them (500) in Unity causes the app to crash almost immediately after it starts to run.

Is there a way to include a folder of images, and NOT pre-load them, or whatever it’s doing? I just need to show one image at a time, and it’s okay if I have to load them from their source JPEG files.

Thank you,
-Chilton

Put them in a Resources folder.

If you want to keep them as JPGs (it would save a huge amount of space with that many high res images), use the WWW class with a file:// prefix to load them from an external folder.

–Eric

awesome!! Do you know if there is a way to include those in an APK or somehow load them in a droid app?