Files
tbd-station-14/Resources/Textures/Shaders/camera_static.swsl
Southbridge cbf8fa2349 Remade the AI Camera Static Shader (#38093)
Redid the camera static shader
2025-06-09 21:47:35 -07:00

7 lines
210 B
Plaintext

void fragment() {
highp vec2 coords = FRAGCOORD.xy;
highp vec2 value = zRandom(coords * SCREEN_PIXEL_SIZE * sin(TIME * 0.01));
highp vec3 color = vec3(value.x);
COLOR = vec4(0.1 * color,1.0);
}