How to remove the granulation from the bloom?
becomes more evident when moving the object horizontally
class PostProcess {
constructor() {
this.scenePass;
this.outputPass;
this.emissivePass;
this.bloomPass;
this.postProcessing;
}
setSize(width,height){
if(this.scenePass.setSize)
this.scenePass.setSize(width,height);
if(this.bloomPass.setSize)
this.bloomPass.setSize(width,height);
}
create(renderer, scene, camera) {
this.scenePass = pass(scene, camera);
this.scenePass.setMRT(mrt({
output,
emissive
}));
this.outputPass = this.scenePass.getTextureNode();
this.emissivePass = this.scenePass.getTextureNode('emissive');
this.bloomPass = bloom(this.emissivePass, 2, 0,0);
this.postProcessing = new THREE.PostProcessing(renderer);
this.postProcessing.outputNode = this.outputPass.add(this.bloomPass);
}
}
based on this one:
https://threejs.org/examples/?q=bloom#webgpu_postprocessing_bloom_emissive