Skip to content
Advertisement

Post Effects and Transparent background in three.js

Trying to use the transparent background with some post effect like the Unreal Bloom, SMAA and Tonemapping provided in the examples but it seems to break the transparency from my render.

JavaScript

If I deactivate the bloom pass I get a correct transparent background but when activated, I obtain a black background. I looked at the sources and it seems that it should correctly handle alpha texture channel as the format is set correctly to THREE.RGBAFormat.

Edit: After some research, I found where does this comes from. It comes from getSeperableBlurMaterial in jspostprocessingUnrealBloomPass.js.

The fragment’s alpha channel is always set to 1.0 which results in a complete removal of the previous alpha values when doing the additive blending at the end.

The cool thing would be to find a proper way to apply the alpha inside the Gaussian blur. Any idea how ?

Advertisement

Answer

I found a solution and this can be sorted like this : https://github.com/mrdoob/three.js/issues/14104

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