
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.
29 lines
785 B
C#
29 lines
785 B
C#
namespace AddressableAssets.DocExampleCode
|
|
{
|
|
#region doc_Load
|
|
using System.Collections;
|
|
using UnityEngine;
|
|
using UnityEngine.AddressableAssets;
|
|
using UnityEngine.ResourceManagement.AsyncOperations;
|
|
|
|
internal class LoadAddress : MonoBehaviour
|
|
{
|
|
public string key;
|
|
AsyncOperationHandle<GameObject> opHandle;
|
|
|
|
public IEnumerator Start() {
|
|
opHandle = Addressables.LoadAssetAsync<GameObject>(key);
|
|
yield return opHandle;
|
|
|
|
if (opHandle.Status == AsyncOperationStatus.Succeeded) {
|
|
GameObject obj = opHandle.Result;
|
|
Instantiate(obj, transform);
|
|
}
|
|
}
|
|
|
|
void OnDestroy() {
|
|
Addressables.Release(opHandle);
|
|
}
|
|
}
|
|
#endregion
|
|
} |