Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Closestring[] Array of asset bundle names.
Return all the AssetBundle names in the asset database.
no example available in JavaScript
using UnityEditor; using UnityEngine;
public class GetAssetBundleNames { [MenuItem ("Assets/Get Asset Bundle names")] static void GetNames () { var names = AssetDatabase.GetAllAssetBundleNames(); foreach (var name in names) Debug.Log ("Asset Bundle: " + name); } }