Changing texture and color on Three.js collada object
I recently got three.js example from the official site working with my collada objects (.dae) using the ColladaLoader.js . Now my question is, how do i change the loaded collada object color attribute and add a custom texture?? I tried adding the texture with no luck yet. Here is my code (slightly changed from the original example): function load_model(el) { if ( ! Detector.webgl ) Detector.addGetWebGLMessage(); var container, stats; var camera, scene, renderer, objects; var particleLight, pointLight; var dae, skin; var loader = new THREE.ColladaLoader(); loader.options.convertUpAxis = true;