Hi, I have an asset group which has a dinamic-variable as a LocalLoadPath, {MyVar}
Once in game, throught scripting, I have tried to update the variable without any succes.
I have also tried to Clear runtime propierties and Set my propierty.
AddressablesRuntimeProperties.ClearCachedPropertyValues();
AddressablesRuntimeProperties.SetPropertyValue("MyAssemblies.AddressablesRuntimePath", bundlesPath);
After I have set the propierty, I use AddressablesRuntimeProperties.EvaluateProperty again to check if the value changed, and it changed.
However when I try to load an asset the next error is thrown.
Unable to open archive file: MyPath/StreamingAssets/aa/252736532120791daf08bd1976a28f00.bundle
Do I have to re initialize the system, update the catalog, load it again in order to take effect or something else?
Or maybe the system can find the .bundles in there?
Thank you.