Tweezers: Plucking animation additions. Autoplay support.

This commit is contained in:
Jenny Crowe
2022-02-10 04:59:20 -07:00
parent 7ee19eb3ad
commit c9ac1608e2
21 changed files with 4253 additions and 91 deletions

View File

@ -166,6 +166,11 @@ namespace RhythmHeavenMania
return a;
}
public float GetPositionFromMargin(float targetBeat, float margin)
{
return GetPositionFromBeat(targetBeat - margin, margin);
}
public float GetSongPosFromBeat(float beat)
{
return secPerBeat * beat;