foreach (var assetBundleName in AssetDatabase.GetAllAssetBundleNames())
{
foreach (var assetPathAndName in AssetDatabase.GetAssetPathsFromAssetBundle(assetBundleName))
{
string nameWithoutPath = assetPathAndName.Substring(assetPathAndName.LastIndexOf("/") + 1);
string name = nameWithoutPath.Substring(0, nameWithoutPath.LastIndexOf("."));
Debug.Log(name);
}
}
相关文章
- 01-06解决VS2012 服务器资源管理器中的表拖不到Linq to sql中
- 01-06资源在windows编程中的应用----菜单
- 01-06NC45-实现二叉树的先序、中序和后序遍历
- 01-06C语言数据结构链栈(创建、入栈、出栈、取栈顶元素、遍历链栈中的元素)
- 01-06LeetCode 1379. 找出克隆二叉树中的相同节点(二叉树遍历)
- 01-06MFC -- 遍历Dialog中的子元素(控件)
- 01-06Spring框架整合MyBatis框架-使用jndi的方式从服务器中获取datasource资源
- 01-06数据结构实验 二叉树的中序非递归遍历
- 01-06用非递归的方法中序遍历二叉树
- 01-067-4 二叉树的建立及中后序遍历 (20 分)