How can we create glossy effects on materials with three.js like the one on this link?
I am not interested in path tracing (yet 🙂 )
How can we create glossy effects on materials with three.js like the one on
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Glossy refers to the ability of a material to reflect light in the specular direction.
In three.js, you can use
THREE.MeshPhongMaterialto do that. For example:You can also use
MeshStandardMaterialwith an environment map.three.js r.97