Rhythm tweezers logic but not really

This commit is contained in:
Braedon
2022-02-08 22:58:25 -05:00
parent be83a87524
commit 93c1cb2065
78 changed files with 1884 additions and 11 deletions

View File

@ -157,7 +157,7 @@ namespace RhythmHeavenMania
public float GetLoopPositionFromBeat(float beatOffset, float length)
{
return Mathf.Repeat(songPositionInBeats + beatOffset, length);
return Mathf.Repeat((songPositionInBeats / length) + beatOffset, 1);
}
public float GetPositionFromBeat(float startBeat, float length)