Google Code Exporter
Google Code Exporter
``` okay thanks, i also already found out why toDataURL() didnt work for me...the object was loading too slow, i use setTimeout now, that works quite well like to test;...
``` The example you mentioned seems to be hierarchical animation, which is hard to support in Jsc3d for the lack of an object hierarchy in its implementation. As you can...
``` Did you set correct render mode for the viewer? You should set render mode to one of 'texture', 'textureflat' or 'texturesmooth' to enable textures in rendering. Otherwise, textures are...
``` The viewer is a cool tool, but I already had it set to viewer.setParameter('RenderMode', 'texturesmooth'); The object UV map looks good and the texture is coming through but my...
``` Have you manually modified the content of the mtl file? Maybe you can take a look into the mtl file, checking whether the mentioned png file was written in...
``` Humm that was an issue but apparently its not working still, does jsc3d support .png UV's ? ``` Original comment by `[email protected]` on 17 Jul 2014 at 6:55
``` Wow you where absolutely right, I had to manually correct the mtl file and it worked!! I will have to look into why blender saves the mtl unlinked, thanks...
``` I'm glad to hear that :-) setParameter() is a very important method which sets various startup parameters before initilization to configure the viewer instance. For documentation of this method,...
``` Thanks. But I cound not reproduce it in my own test: safari + ipad or opera + emulator. ``` Original comment by `[email protected]` on 21 Apr 2014 at 12:06
``` Touch support in Jsc3d is built upon hammer.js's touch event mechanism. Pinching uses 'pinch' event while rotation is based on 'drag' event. Basically both should not be triggered at...