InfiniteLoop Posted December 5, 2015 Share Posted December 5, 2015 I'm trying to find a way to import a Mesh with vertex colors made on Blender. I've managed to load a mesh with textures or a basic material., but I can't seem to find a way to use the vertex paint i made on Blender...on three.js I've made sure to add Vertex Colors in the Object Data panel on BlenderI ticked the vertex colors option on the Blender three.js exporter. I'm loading the model using: loader.load( "model.js", function ( geometry, materials ) { mesh = new THREE.Mesh( geometry, new THREE.MeshFaceMaterial( materials ) ); scene.add( mesh ); animate();} );...but all I only get a solid gray color. I'm guessing that's the default material color from Blender. Hope this makes sense. Thanks all. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.