Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im working on a CAD system based on Kinetic.js and Three.js, basically it renders every node (which is associated with a collada) from a kinetic.js layer into a scene in Three.js. The colladas are loading fine but I'm having trouble with the render order, basically it renders some of the collada in place of other colladas.

This is the collada loader function (very very messy, I know).

 for(nn in layerobj.children){
                loader = 'loader';
                window[loader + nn] = new THREE.ColladaLoader();
                collada = new Object();
                pn = 0;
                window[loader + nn].load( '/models/'+layerobj.children[nn].sku+'/m/'+layerobj.children[nn].sku+'.dae', function(collada) {
                window['dae' + pn] = collada.scene; 
                window['dae' +pn].scale.y = window['dae' + pn].scale.z =  window['dae' + pn].scale.x = layerobj.children[pn].scale*0.1;
                window['dae' + pn].rotation.x = -Math.PI/2;
                pos_dae = layerobj.children[pn].getPosition();
                window['dae' + pn].position.x = pos_dae.x + 10;
                window['dae' + pn].position.z = pos_dae.y + 10;
                window['dae' + pn].rotation.z = -(layerobj.children[pn].getRotation());
                window['dae' + pn].recieveShadow = true;
                window['dae' + pn].updateMatrix();
                scene.add(window['dae' + pn]);
                renderer.render(scene, camera3d);
                pn = pn + 1;
                })

        }

Im completly lost on how to fix it. Any help would be aprecciated

You can see it happen in here (messy proyect) http://dev.chorrillana.com/index.php?i=proyecto&n=10

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.