Spaceball costumes

This commit is contained in:
Starpelly
2021-12-26 02:25:17 -05:00
parent 95ac1306d4
commit 4b3bfeda1b
12 changed files with 649 additions and 141 deletions

View File

@ -35,9 +35,11 @@ namespace RhythmHeavenMania.Games.Spaceball
float normalizedBeatAnim = Conductor.instance.GetLoopPositionFromBeat(startBeat, beatLength + 0.2f);
if (high)
anim.Play("BallHigh", -1, normalizedBeatAnim);
anim.Play("BallHigh", 0, normalizedBeatAnim);
else
anim.Play("BallLow", -1, normalizedBeatAnim);
anim.Play("BallLow", 0, normalizedBeatAnim);
anim.speed = 0;
float normalizedBeat = Conductor.instance.GetLoopPositionFromBeat(startBeat, beatLength);