This commit is contained in:
2026-08-27 18:20:26 +02:00
parent a926cd6799
commit 029f9d4d0a
17 changed files with 359 additions and 368 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ float rand(float seed){
}
float rand(vec2 n){
return rand(n.x * 1234 + n.y * 9876);
return rand(n.x * 1234. + n.y * 9876.);
}
#endif