扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
注意文件以及文件夹必须寄宿在Resources目录下,才能顺利调用Resources.Load()和Resources.loadAll()这两个函数得到所需要的图像文件。
public class GUITest : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
private Texture2D texSingle;
private Texture2D[] texAll;
void OnGUI()
{
if (GUI.Button(new Rect(0,10,100,50),"加载一张贴图"))
{
if (texSingle==null)
{
texSingle = Resources.Load("single/0") as Texture2D; //这里不需要加后缀
}
}
if (GUI.Button(new Rect(0,130,100,50),"加载一组贴图"))
{
if (texAll==null)
{
var textures = Resources.LoadAll("textures");
int countAll=textures.Length;
texAll=new Texture2D[countAll];
for (int i = 0; i < countAll; i++)
{
texAll[i] = textures[i] as Texture2D;
}
}
}
//绘制贴图
if (texSingle!=null)
{
GUI.DrawTexture(new Rect(110,10,80,80),texSingle,ScaleMode.ScaleToFit,true,0);
}
if (texAll!=null)
{
int countOfAll = texAll.Length;
for (int i = 0; i < countOfAll; i++)
{
GUI.DrawTexture(new Rect(110+i*80,130,80,80),texAll[i],ScaleMode.ScaleToFit,true,0);
}
}
}
}
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流