When I use a Collada model with .jpg texture, three.js seems to overlay a wireframe mesh over the texture. My question - is there a way to remove the wireframes?

an example is here; http://movealpha.com/dae/test1.html

and this is the same example with the Collada texture removed to show the underlying wireframe; http://movealpha.com/dae/test2.html

Is this an issue or is there a simple way to remove the wireframe overlay?

ps. Thanks mrDoob for a truly AWESOME javascript library - we are collectively not worthy!

link|improve this question
feedback

1 Answer

mrdoob answered this on github; https://github.com/mrdoob/three.js/issues/885

here's a copy of his answer

It's a limitation of CanvasRenderer. Setting material.overdraw = true may improve things. You can find the object that has the material you want to change by doing:

var object = collada.scene.getChildByName( 'object_name', true );
object.material.overdraw = true;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.