当前位置:   article > 正文

Resources.Load和Resources.LoadAll使用_resources.loadall path

resources.loadall path
必要的时候可以将某一种类型强行转换成另一张类型
using UnityEngine;
using System.Collections;
public class AA : MonoBehaviour {
    private Texture2D tex;
    private Object[] texs;
    void OnGUI () {

        if(GUI.Button(new Rect(0,10,100,30),"加载一张")){
            if(tex==null){
                tex=(Texture2D)Resources.Load("tex/0");//Resources项目文件下的tex文件夹下的图片
            }
        }
        if(GUI.Button(new Rect(0,80,100,30),"加载多张")){
            if(texs==null){
                texs=Resources.LoadAll("aaa");//aaa是Resources文件夹下的文件名 将多个图片有序编排
            }
        }
        if(tex!=null){
            GUI.DrawTexture(new Rect(140,10,50,50),tex);
        }
        if(texs!=null){
            for(int i=0;i<texs.Length;i++){
                GUI.DrawTexture(new Rect(140+i*50,85,50,50),(Texture2D)texs[i]);
            }
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/566336
推荐阅读
相关标签
  

闽ICP备14008679号