bro adding zero in 2 places 💀

This commit is contained in:
neon443
2025-08-25 21:22:32 +01:00
parent 3f7f253f63
commit b0a20c74cc

View File

@@ -13,10 +13,10 @@ using namespace metal;
float2 uv = pos/size;
// scanwave
half3 newCol = 0.75 + 0.5 + 0.5 * sin(time + uv.y*10 + half3(0));
half3 newCol = 0.75 + 0.5 + 0.5 * sin(time + uv.y*10);
//scanlines
newCol *= 0.5 + 0.5 * sin(uv.y * 1000.0 + half3(0));
newCol *= 0.5 + 0.5 * sin(uv.y * 1000.0);
half4 output = half4(color.xyz*newCol, 1);
return output;
}