Crop Stomp: Basic stomping

This commit is contained in:
Jenny Crowe
2022-02-28 01:33:11 -07:00
parent 4ea1e3f1ff
commit 5871716bd1
19 changed files with 1280 additions and 153 deletions

View File

@ -19,6 +19,8 @@ namespace RhythmHeavenMania.Games
public bool isEligible; //value never used for anything
private bool autoPlayEnabledOnStart; //value never used for anything
public bool triggersAutoplay = true;
public void PlayerActionInit(GameObject g, float createBeat)
{
state.gameObject = g;
@ -31,7 +33,7 @@ namespace RhythmHeavenMania.Games
{
if (aceTimes == 0)
{
if ((GameManager.instance.autoplay || autoPlay) && normalizedBeat > 0.99f)
if (triggersAutoplay && (GameManager.instance.autoplay || autoPlay) && normalizedBeat > 0.99f)
{
OnAce();
if (!autoPlay)