91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

[Unity] 文件夾圖像資源的讀取

發布時間:2020-06-28 10:19:15 來源:網絡 閱讀:378 作者:蓬萊仙羽 欄目:開發技術

[Unity] 文件夾圖像資源的讀取

注意文件以及文件夾必須寄宿在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);
            }
        }
    }
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

un ty
AI

柳江县| 内黄县| 酉阳| 温泉县| 大埔区| 老河口市| 临湘市| 沅陵县| 积石山| 平谷区| 白沙| 宁陵县| 高安市| 股票| 当阳市| 兴海县| 金门县| 得荣县| 朝阳区| 上虞市| 涟水县| 绥宁县| 武陟县| 西昌市| 瓮安县| 海淀区| 手机| 屏山县| 威远县| 黔江区| 衡山县| 仁化县| 青州市| 辽宁省| 乳源| 新邵县| 徐汇区| 略阳县| 乐清市| 英超| 锦州市|