42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
namespace AddressableAssets.DocExampleCode
|
|
{
|
|
#region doc_Load
|
|
|
|
using UnityEngine;
|
|
using UnityEngine.AddressableAssets;
|
|
using UnityEngine.ResourceManagement.AsyncOperations;
|
|
|
|
internal class LoadFromReference : MonoBehaviour
|
|
{
|
|
// Assign in Editor
|
|
public AssetReference reference;
|
|
|
|
// Start the load operation on start
|
|
void Start()
|
|
{
|
|
AsyncOperationHandle handle = reference.LoadAssetAsync<GameObject>();
|
|
handle.Completed += Handle_Completed;
|
|
}
|
|
|
|
// Instantiate the loaded prefab on complete
|
|
private void Handle_Completed(AsyncOperationHandle obj)
|
|
{
|
|
if (obj.Status == AsyncOperationStatus.Succeeded)
|
|
{
|
|
Instantiate(reference.Asset, transform);
|
|
}
|
|
else
|
|
{
|
|
Debug.LogError("AssetReference failed to load.");
|
|
}
|
|
}
|
|
|
|
// Release asset when parent object is destroyed
|
|
private void OnDestroy()
|
|
{
|
|
reference.ReleaseAsset();
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|