use symlinks

This commit is contained in:
2026-08-28 20:12:44 +02:00
parent e1e88362bd
commit bba4c0e8f5
10 changed files with 9 additions and 965 deletions
-14
View File
@@ -1,14 +0,0 @@
#ifndef INC_RAND
#define INC_RAND
float rand(float seed){
float v = pow(abs(seed), .8571429); // 6. / 7.
v *= sin(v) + 1.;
return fract(v);
}
float rand(vec2 n){
return rand(n.x * 1234. + n.y * 9876.);
}
#endif
+1
View File
@@ -0,0 +1 @@
../forge-steel/default/inc_rand.glsl