5 lines
101 B
GLSL
5 lines
101 B
GLSL
float random(vec2 _uv)
|
|
{
|
|
return fract(sin(dot(_uv.xy, vec2(12.9898, 78.233) ) ) * 43758.5453);
|
|
}
|