How to add OutlinePass but not modify the default scene color?

Hello,
I tried to add OutlinePass to my project but it might change the scene color, is there any way to add OutlinePass but not change the scene color.
Before add OutlinePass:


After add OutlinePass:

1 Like

If you’re using post-processing, you need to do color correction at the end of the effect stack. With three.js own post-processing system, that would mean an OutputPass after your OutlinePass.

1 Like

Thanks, I added Output Pass and It works for me. :blush:

1 Like