How to load a model via addressable by setting Remote Catalog Load Path at Runtime in Unity?

2.3k Views Asked by At

Trying to load an asset using addressable. I have set the build path to Remote build path and load path to Remote Load path.In the manage profile section I have set the remote build path to "https://name-company.github.io/TestProject/[BuildTarget]".Trying to load a 3d model in my app.It is working using the following code by giving the addressable model name here "Panda".

AsyncOperationHandle<GameObject> loadWithSingleKeyHandle = Addressables.LoadAssetAsync<GameObject>("Panda");
    yield return loadWithSingleKeyHandle;
    if (loadWithSingleKeyHandle.Status == AsyncOperationStatus.Succeeded)
    {
        GameObject obj = loadWithSingleKeyHandle.Result;
        AddressableGO.Add(obj);
        Debug.Log("Prefab Name = " + obj.name);
        Instantiate(obj);         
    }      

The issue occurs when I try to load from a aws server because random links are generated. I cannot set the remote load path earlier, have to give them dynamically.This seems to be the answer.How to set MyApp.Something.URL from the provided link?

0

There are 0 best solutions below