Skip to content
Advertisement

How to Set WebGLRender background to transparent

I’m trying to put objects in front of CSS3DObjects with the THREE.NoBlending hack. But I only see the black plane without the CSS3DObject in the newest revisions (tried r65 and r66). A small example I made looks like this:

index.html:

JavaScript

moo.html:

JavaScript

This is the result:

Revision 58: http://i.imgur.com/tCszJ8X.jpg

Revision 66: http://i.imgur.com/kfppVwF.jpg

I’ve tried to understand why, it’s probably something very simple. I can’t find anything in migration that would change the behavior in this way.

Thanks in advance.

Advertisement

Answer

If you want a transparent background with WebGLRenderer, you need to set alpha = true in the WebGLRenderer constructor. You can then set the clear color.

JavaScript

three.js r.66

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement