Start a new topic
Solved

Rendering 3D model dynamically from UR L

Is it possible to render the 3D model on a tracking image, 3D model should be downloaded in run time from a URL instead of compiling them into the .apk file? If yes what is the procedure?








Hello Mahesh,


Yes it is possible to load a 3D model dynamically from a URL. You just need to specify the url when you create the Model

 

instead of
new AR.Model("models/my3dModel.wt3", ...
put 
new AR.Model("url", ...

 

Thanks

Eva


That is a JavaScript example, is it possible to do the same using Android/IOS native code?

 

Hello Mahesh,


The Native API does not integrate a separate rendering engine, but offers you the full flexibility in terms of rendering augmented reality content. You can find details on the differences between the Native and the JS API  below:

http://www.wikitude.com/products/native-and-js-api-comparison/


We don't offer any specific samples for 3D model rendering with the Native API, as the rendering for this approach has to be implemented by the developers.


Thanks

Eva

Login or Signup to post a comment