How do I change the next image with buttons while images are loading dynamically in Unity3D using C#.
public void NextPictureInGallery()
{
int i=0;//index of image
if(i + 1 < image.Length)
{
i++;
}
}
Images are in a Scroll view