Hi ThreeJS community,
Does OutlinePass do any special rendering (other than the outlining)? I was doing something fairly simple:
var composer = new EffectComposer(...);
composer.addPass(new RenderPass(...));
composer.addPass(new OutlinePass(...));
After adding OutlinePass, the entire scene is much darker and looks terrible. After removing OutlinePass, the scene went back to normal. Any insight would be appreciated.