Are there any opacity maps for THREE.js ? Like:

so that I can use it on a map like

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.
MeshBasicMaterial,MeshLambertMaterial,MeshPhongMaterialandMeshStandardMaterialsupport analphaMap.Alternatively, you could bake the transparency into your color texture’s alpha channel.
In either case, you need to set
material.transparent = true.EDIT: If you are implementing a cut-out (alpha is either 0 or 1), then instead of setting
material.transparent = true, you can just setmaterial.alphaTest = 0.5.three.js r.87