Version: 2020.1

AssetDatabase.LoadAllAssetRepresentationsAtPath

切换到手册
public static Object[] LoadAllAssetRepresentationsAtPath (string assetPath);

描述

返回 assetPath 下所有的子资源。

此函数仅返回 Project 视图中可见的子资源。
所有路径均相对于项目文件夹,例如:“Assets/MyTextures/hello.png”

注意:可通过 AssetDatabase.AddObjectToAsset 显式添加子资源
另请参阅:AssetDatabase.LoadMainAssetAtPathAssetDatabase.LoadAllAssetsAtPathHideFlags.HideInHierarchy

using UnityEngine;
using UnityEditor;

public class Example : MonoBehaviour { [MenuItem("AssetDatabase/LoadAllAssetRepresentationsAtPath")] private static void PrintSubAssets() { Object[] data = AssetDatabase.LoadAllAssetRepresentationsAtPath("Assets/MySpriteTexture.png");

Debug.Log(data.Length + " Sub Assets");

foreach (Object o in data) { Debug.Log(o); }

// outputs: // 4 Sub Assets // MyTexture_0 (UnityEngine.Sprite) // MyTexture_1 (UnityEngine.Sprite) // MyTexture_2 (UnityEngine.Sprite) // MyTexture_3 (UnityEngine.Sprite) } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961