
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
1.1 KiB
C#
34 lines
1.1 KiB
C#
namespace AddressableAssets.DocExampleCode
|
|
{
|
|
#region doc_LoadWithReference
|
|
using UnityEngine;
|
|
using UnityEngine.AddressableAssets;
|
|
using UnityEngine.ResourceManagement.AsyncOperations;
|
|
|
|
internal class LoadWithReference : 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 {reference.RuntimeKey} failed to load.");
|
|
}
|
|
}
|
|
|
|
// Release asset when parent object is destroyed
|
|
private void OnDestroy() {
|
|
reference.ReleaseAsset();
|
|
}
|
|
}
|
|
#endregion
|
|
} |