Got rid of all hard-coded ForkLifter code from GameManager.

This commit is contained in:
Starpelly
2021-12-20 23:38:59 -05:00
parent 6040f859a9
commit 1bdf6c68e8
12 changed files with 325 additions and 108 deletions

View File

@ -26,7 +26,7 @@ namespace RhythmHeavenMania
public void IncreaseScore()
{
totalHits++;
score = GetPercent(totalHits, GameManager.instance.allPlayerActions.Count);
// score = GetPercent(totalHits, GameManager.instance.allPlayerActions.Count); broken right now will fix eventually
}
public float GetPercent(float value, float totalValue)