Hi,
I am looking for someone who can create an outline post process effect whose thickness can be freely adjusted.
Best
Hi,
I am looking for someone who can create an outline post process effect whose thickness can be freely adjusted.
Best
Are you aware of this? You can modulate ‘thickness’ by adjusting ‘edgeStrength’ value
I am aware of this. But the parameters are very limited and you cannot increase the thickness a lot.
Oh I see. You can overcome some limitations by using / combining a sobel filter and signed distance field. What is your expected result and/or use case? Maybe I can be helpfull on this, feel free to send me a dm for further discussion
Here’s an implementation of a mesh outline. I’m looking into how to make these overlap.
https://codesandbox.io/p/sandbox/three-playground-cd2lzf?file=%2Fsrc%2Findex.ts%3A98%2C1
Very interesting!
The article states that brute forcing is more about the quality of the outlines but Gaussian blur could also create such thick ones.
I am fine that the outlines are not like in photoshop but can the OutlinePass be adapted to have way thicker outlines?
There’s a hardcoded constant in the OutlinePass.js MAX_RADIUS which is set to 4, so that limits how big a blur radius… i don’t know if its as easy as copying that file and changing the constant to smth like 16 to get a larger blur radius. It uses a 2 pass gaussian blur internally i think.
I created a sandbox that shows the jump flood outlines in action: https://codesandbox.io/p/sandbox/jf-outlines-hx8msz
Unfortunately the code is only working for <=0.137.0.
Any idea why it breaks for later versions?: https://codesandbox.io/p/sandbox/jf-outlines-forked-6dxq4w
Looks like the sandbox is private?
Oh, you’re right. I made them public!
in jfaOutline.js, near the end, it is passing a rendertarget directly into the texture uniform instead of the renderTarget.texture… this used to be allowed, but it involved an additional check and was janky, so now it’s explicit. It was throwing a warning in 137 and by 138. the check was removed entirely and they just let it break.
Those outlines are awesome btw. pretty cool.
It works with latest threejs now:
I cleaned up that JFA outline code some and spruced up the interface… now alpha works and I added a glow mode… check it out!:
Nice, this is awesome! Thank you very much! Even though we don’t have depth as OutlinePass to render hidden lines with another color this outline gives us many opportunities.
One thing I noticed. Are we able to antialias the outline?
You can add:
samples:16
to the rendertarget constructor at line 75 of JFAOutline.js
But the algorithm is already doing a long of pixel pushing so maybe experiment with as small a value as you can afford…
If you need hidden surface, you could maybe do it in 2 pasess front/back… by toggling the depthFunc on the objects materials …
This is way better. Thanks for your help!
I just noticed that it’s not working on mobile. Or at least on iOS. Do you know what’s the problem?
I have some ideas.
I tried switching to HalfFloatType and it helped it run on my pixel. maybe its ok on ios now?