随机获得图片的代码如下。
//--------------------------------------
using UnityEngine;
using System.Collections;
public class RandomTexture : MonoBehaviour
{
public Texture[] texList;
Texture GetRandomTex()
{
if (texList.Length > 0)
{
//参数为int的Random为左闭右开区间
int random = Random.Range(0, texList.Length);
return texList[random];
}
return null;
}
}