Skip to content

starter test

BLOKS Shader Bulletin Board

starter test

By RJ Shelton June 8, 2026

Shader Preview Unavailable

This realtime shader may be too intensive for your current device or browser.

Shader Code
void mainImage(out vec4 fragColor, in vec2 fragCoord)
{
    vec2 uv = fragCoord.xy / iResolution.xy;

    vec3 color = vec3(uv.x, uv.y, 0.65);

    color += 0.15 * sin(iTime + uv.xyx * 6.2831);

    fragColor = vec4(color, 1.0);
}
//adding notes.

← Back to Shader Bulletin Board