I have multi scenes and use same renderer to render.
renderer.render( scene1,camera);
renderer.render(scene2,camera);
renderer.render(scene3,camera);
…
now I want to add a outlinepass for the box in scene2 and I want to keep the outline on the top.
how can I complete this ?