- Home /
Question by
deezero7 · Dec 12, 2021 at 07:21 AM ·
assetbundleprefab-instance
How to get Addreassable address of Prefab if i Instantiate bunch of object's from 'Label'.
Addressables.LoadAssetsAsync("playericon", null).Completed += objects => {
foreach (var go in objects.Result)
{
Debug.Log($"Addressable Loaded: {go.name}");
Instantiate(go, transform.parent = transform);
// Here how to get Address of go asset?
}
};
Comment
Your answer

Follow this Question
Related Questions
Animation controller attached to prefab instance doesn't work 0 Answers
How to import the object from server to unity 2 Answers
Is it posible to tell unity not to compress assetBundles? 2 Answers
Missing textures & materials in asset bundle 1 Answer
Base map problem when loading terrains from asset bundles in build. 1 Answer