6 lines
131 B
GLSL
6 lines
131 B
GLSL
float random(vec2 st) {
|
|
return fract(sin(dot(st.xy,
|
|
vec2(12.9898,78.233)))*
|
|
43758.5453123);
|
|
}
|