I am looking to have clients load text / image assets onto a web server from a web front end. I then need those assets dynamically loaded at runtime into an Iphone and Android mobile device app built using Unity with the QCAR extension. In other words, the assets that I need dynamically loaded into the apps at runtime will be the augmented reality assets that will appear over the trackable in the camera view.
I don’t think the AssetBundle or Resource Folder is the way to go because the assets are constantly changing on the server from the web front end. Is www class the way to go?
The other way is to use the WWW class to download your model information (vertices,uv’s and normal) and recreate it from scratch and then download the texture and create a material. But this is pretty much just doing what assetbundles can do.