unity3d中随机出现图片。

2024-11-25 02:05:37
推荐回答(1个)
回答1:

随机获得图片的代码如下。
//--------------------------------------
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;
}
}