I'm trying to add an OutlinePass described in outline a 3d object in three.js. I'm using TransformControls to move objects in my scene. However, whenever I try to outline an object, it looks like the TransformControls are being outlined as well. This is especially prominent when the hiddenEdgeColor is lighter.
You can see an example where I added a TransformControl to the OutlinePass demo provided by THREE.js:
https://jsfiddle.net/ye0e47dv/3/
I added this snippet:
let gizmo = new THREE.TransformControls(camera, renderer.domElement);
scene.add(gizmo);
gizmo.attach(floorMesh);
If you select any object other than the ground, you'll see the TransformControls light up.