visual changesw

This commit is contained in:
biglyderv 2025-03-06 19:15:23 -05:00
parent a95e485cb7
commit baac2b0513
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
3 changed files with 8 additions and 5 deletions

View file

@ -39,7 +39,7 @@
gl_FragColor = vec4(b_position.xyz*0.1,1) * 0.2 + vec4(0.3,0.3,0.3,1) * 0.8;
return;
}
float dist = (log(distance(b_position.xy,vec2(0.0))) - size_thing + dist_thing) / log(2.0) * 0.1;
float dist = (log(distance(b_position.xy,vec2(0.0))) - size_thing) / log(2.0) * 0.1;
gl_FragColor = vec4((mod(dist,0.1) - 0.1 + 0.1 * dist_thing) * 50.0 * vec3(1,1,1),1); // return redish-purple
}