mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
455dcc7fde
float parameters don't trigger shader regeneration anymore
10 lines
249 B
GLSL
10 lines
249 B
GLSL
vec4 preview_2d(vec2 uv) {
|
|
$(code)
|
|
float d = $(value);
|
|
vec3 col = vec3(cos(d*min(256, preview_size)));
|
|
col *= clamp(1.0-d*d, 0.0, 1.0);
|
|
col *= vec3(1.0, vec2(step(-0.015, d)));
|
|
col *= vec3(vec2(step(d, 0.015)), 1.0);
|
|
return vec4(col, 1.0);
|
|
}
|