
There is an asset in the store I grabbed. the coding is WAY above my head, I got about half of it and integrated and adapted what I can to it. im going as far as I can with it and ill come back in a few month when I understand t better.
34 lines
953 B
C#
34 lines
953 B
C#
namespace AddressableAssets.DocExampleCode
|
|
{
|
|
#region doc_LoadWithEvent
|
|
using UnityEngine;
|
|
using UnityEngine.AddressableAssets;
|
|
using UnityEngine.ResourceManagement.AsyncOperations;
|
|
|
|
internal class LoadWithEvent : MonoBehaviour
|
|
{
|
|
public string address;
|
|
AsyncOperationHandle<GameObject> opHandle;
|
|
|
|
void Start() {
|
|
// Create operation
|
|
opHandle = Addressables.LoadAssetAsync<GameObject>(address);
|
|
// Add event handler
|
|
opHandle.Completed += Operation_Completed;
|
|
}
|
|
|
|
private void Operation_Completed(AsyncOperationHandle<GameObject> obj) {
|
|
|
|
if (obj.Status == AsyncOperationStatus.Succeeded) {
|
|
Instantiate(obj.Result, transform);
|
|
} else {
|
|
Addressables.Release(obj);
|
|
}
|
|
}
|
|
|
|
void OnDestroy() {
|
|
Addressables.Release(opHandle);
|
|
}
|
|
}
|
|
#endregion
|
|
} |