1
0
mirror of https://github.com/DigvijaysinhGohil/Godot-Shader-Lib.git synced 2025-09-20 12:25:59 +08:00

Hue node added

This commit is contained in:
Digvijaysinh Gohil
2024-03-12 12:14:55 +05:30
parent 64df7fb100
commit eaa074f68f
5 changed files with 127 additions and 1 deletions

View File

@ -31,6 +31,6 @@ float koch_fractal(vec2 uv, float outline, int iteration, float shape_width, flo
dist = length(center - vec2(clamp(center.x, -1.0, 1.0), 0));
dist += step(outline / 100.0, dist / scale);
koch_uv = center;
koch_uv = abs(center);
return 1.0 - dist;
}