textures - Android metaio SDK upgrade 6.0.2 - setTexture not working -


we're upgrading sdk 5.5 6.0.2 , have issue settexture function. here's part of our code:

final string texturestring = assetsmanager.getassetpath(getapplicationcontext(),                     "models/red.jpg");              msurfaceview.queueevent(new runnable() {                 @override                 public void run() {                     if (texturestring != null) {             //setting texutre object.                         tempgeo.settexture(texturestring);             //currently settexture function returning true value still not able see changes.                     }                 }             }); 

the settexture function returns "true" , texture path valid. problem is, texture not updated on 3d model. nothing changed in code , code still works 5.5. model in fbx format.

any ideas why texture not updated in 6.0.2 sdk?

thanks

ok, "solved" issue. wasn't related settexture function or model. there issue preventing parts of code work.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -