Hi there,
I know it is possible to use the post proccessing FX only on a single object, but it didnt worked in my project. I tried to wrap the outline effect in a EffectComposer component and then I wrapped the select component over a sphere object, just like in the documentation.
This is the code:
<Selection>
<EffectComposer>
<Outline edgeStrength={100} />
</EffectComposer>
<Select enabled>
<Sphere scale={scale} position={position} outline={Outline}>
<meshStandardMaterial color={color} wireframe={wireframe} />
</Sphere>
</Select>
</Selection>
Unfortunately it is not working like this and I am not sure what I do wrong. As far as I know, it is not possible with all effects to just use it for single object, but it should be possible with outline and noise.
Here is an example from the noise effect which is just used on a single object:
Can someone please help me please?