I am new to three js and trying to create a cube like this: I can't figure out how to create the material for my cube. The material seems to be silver polished. It has reflection and nice edges. Would you please help me to find out which material with which parameters will give me result like that?
I am new to three js and trying to create a cube like this: I can't figure out how to create the material for my cube. The material seems to be silver polished. It has reflection and nice edges. Would you please help me to find out which material with which parameters will give me result like that?
Share Improve this question edited Mar 31, 2020 at 9:43 Edric 26.9k13 gold badges87 silver badges95 bronze badges asked Jul 11, 2017 at 8:25 Iman MahmoudinasabIman Mahmoudinasab 7,0154 gold badges49 silver badges70 bronze badges 2- 1 SO is not intended to do your coding for you. Show your current code so we can help instead of create. – Mitchell van Zuylen Commented Jul 11, 2017 at 8:28
- 1 @MitchellvanZuylen i know so isn't about coding for others. I think I don't ask the question well or putting the picture made you misunderstood. I'm not asking how i code all the cube i just ask which material , with which params would gave me a silver like material. as you can see answer of @ WestLangley the answer don't need my code. – Iman Mahmoudinasab Commented Jul 12, 2017 at 4:36
2 Answers
Reset to default 9You want to create a silver, polished material in three.js.
MeshStandardMaterial
is a physically-based material and was designed for that purpose.
var material = new THREE.MeshStandardMaterial( {
metalness: 1, // between 0 and 1
roughness: 0.5, // between 0 and 1
envMap: envMap,
} );
Be sure to specify an environment map so there is something to reflect. Adjust the other parameters to your liking.
three.js r.86
Use a THREE.MeshPhongMaterial()
and set the envMap
property to the renderTarget
of the camera you want to use for reflection.
For the polished look you can use a texture in the specularMap
property (or even the specular
property).
The smooth edges are done by calling geometry.puteVertexNormals()
.
Edit: As mentioned by @prisoner849, puteVertexNormals
needs to be called before you apply the material.
Edit 2: As requested by @prisoner849, here's a working example
Edit 3: @WestLangley mentioned using THREE.MeshStandardMaterial()
should work better, so the example has been updated to reflect that.