This commit is contained in:
2024-05-25 13:50:45 +03:00
parent 8cdac52f8f
commit 42ab16309c
12 changed files with 997 additions and 211 deletions

View File

@ -9,10 +9,10 @@ float zoom = 1.;
float gTime = 0.;
float getBeat(void) {
return floor(abs(time*4.) / (60./133.) );
return floor(abs(time*4.) / (60./145.) );
}
float getBar(void) {
return floor(abs(time) / (60./133.));
return floor(abs(time) / (60./145.));
}
vec2 csqr(vec2 a) {