Docs

Addressables

Asset loading & bundling.

What is Addressables

Addressables load assets by a string address and handle bundling, memory, and remote delivery.

Install

package id
text
com.unity.addressables

Usage

csharp
csharp
var handle = Addressables.LoadAssetAsync<GameObject>("enemy");
var prefab = await handle.Task;

Docs

Official documentation: Addressables.