Hello,
I have a simple scene with rotating an object, when the scene background is set to black, you can cleary see the AfterImagePass and the result looks amazing, howerer if you switch to light mode where the scene background is set to white, you dont see that AfterImagePass effect anymore and during the rotation the model is looking more transparent instead.
Is this how it is intended to be or am I missing something?
const afterimagePass = new AfterimagePass();
const composer = new EffectComposer(renderer);
composer.addPass(new RenderPass(scene, camera));
composer.addPass(afterimagePass);
here is how I initilize the passes,
and here is how it is animated:
function render() {
requestAnimationFrame(render);
stats.update();
composer.render();
}
render() is initialized as soon as the model is loaded.
Any tips or advices are welcomed.
Thank you!