What I did
I have a scene with several multi material objects, each object is setup with THREE.TubeGeometry and before adding to the scene I create the multi material object setup for vertex shading. The following function gets passed a THREE.TubeGeometry object.
addPipeGeometry: function(geometry)
{
var tubeMesh = THREE.SceneUtils.createMultiMaterialObject(geometry, [
new THREE.MeshLambertMaterial(
{
shading: THREE.FlatShading,
vertexColors: THREE.VertexColors,
opacity: 0.7,
side: THREE.DoubleSide
}),
new THREE.MeshBasicMaterial(
{
color: 0x000000,
shading: THREE.FlatShading,
wireframe: true,
transparent: true
})]);
if (geometry.debug)
{
tubeMesh.add(geometry.debug);
}
// add object to scene
this.addObjectToScene(tubeMesh);
return tubeMesh;
}
My shading function changes the vertex color for a given face for each segment of each THREE.TubeGeometry object in the scene. I have the following update function running inside render()
updateObjects: function()
{
var sceneObjects = this.getAllSceneObjects();
$.each(sceneObjects, function(key)
{
var geometry = sceneObjects[key].children[0].geometry;
geometry.colorsNeedUpdate = true;
});
}
The problem
The vertex shading works, colors show. The problem is that before I had updateObjects() being called in render() only a few of these pipe objects would change color. After adding updateObjects() to render() all vertex colors show eventually.
What I mean by eventually is that I have to move around in the scene a bit (THREE.TrackballControls) and give it some time but all of the pipe objects end up with their proper vertex shading after about 15-30 seconds of scene movement.
NOTE: All pipe objects in the scene will get their vertex shading right away if I DONT move around in the scene before activating the function to apply the vertex shading.
What I would like is to have these vertex shades applied instantly whether or not there has been scene movement before calling to function to apply all the vertex shades to each THREE.TubeGeometry object.