Replies: 2 comments 1 reply
-
Strange! Looks like "builtin_uv_size" has a bug! |
Beta Was this translation helpful? Give feedback.
1 reply
-
Ok, fixed the aspect by @Limeth, I would want this shader to have some modifications. If anyone knows and wants to play a bit with it... 😁
With these modifications, we can move the source by the screen like a bubble. [EDIT]: I change some code to make the ball opaque and the black ouside, transparent: col *= vec4(
pow(max(edge-len, 0.0), 0.2),
pow(max(edge-dispersion-len, 0.0), 0.2),
pow(max(edge-dispersion*2.0-len, 0.0), 0.2),
pow(max(edge-len, 0.0), 0.05))*1.2; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I like this shader: https://www.shadertoy.com/view/3tXczj#. It creates like a distorted and misterious magic ball. Like this:
I converted to use it in obs-shaderfilter-plus. I get to this:
But, instead of the same effect, I get this 🤦:
I think the main problem is about aspect. But I tried different things and I didn't arrive to anywhere.
Where is the error?
Beta Was this translation helpful? Give feedback.
All reactions