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:
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:
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.
Thanks, I added Output Pass and It works for me.