AssetDatabase的方法總結
1、AssetDatabase.FindAssets
public static string[] FindAssets(string filter);
public static string[] FindAssets(string filter, string[] searchInFolders);
| filter | 該篩選器字符串可以包含:名稱、資產標簽和類型(類名稱)的搜索數據 |
| searchInFolders | 指定一個或多個文件夾將限制搜索到這些文件夾和它們的子文件夾(比搜索所有的資產更快) |
