午夜视频在线网站,日韩视频精品在线,中文字幕精品一区二区三区在线,在线播放精品,1024你懂我懂的旧版人,欧美日韩一级黄色片,一区二区三区在线观看视频

分享

Unity 3D如何根據(jù)類型查找項(xiàng)目中所有的Asset

 3dC 2014-03-24
using UnityEngine;
using System.Collections.Generic;
using UnityEditor;

public class TryFindEditor : EditorWindow
{
// Add menu item named "My Window" to the Window menu
[MenuItem("Window/Find All Type")]
public static void ShowWindow()
{
//Show existing window instance. If one doesn't exist, make one.
EditorWindow.GetWindow(typeof(TryFindEditor));
}
List allMaterials;
void OnGUI()
{
if (GUILayout.Button("Load"))
{
allMaterials = new List();
string[] paths = AssetDatabase.GetAllAssetPaths();
foreach (string path in paths)
{
Material mat = (Material)AssetDatabase.LoadAssetAtPath(path, typeof(Material));
if (mat != null)
{
Debug.Log(mat.name);
allMaterials.Add(mat);
}
}
Debug.Log(allMaterials.Count);
}
}
}


    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多