From 532dfe2a081514b69d915b14ceb1412ace89265d Mon Sep 17 00:00:00 2001 From: minenice55 Date: Wed, 8 Jun 2022 23:15:42 -0400 Subject: [PATCH] I'm dumb and left in debug prints --- Assets/Scripts/Games/FanClub/NtrIdolFan.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Assets/Scripts/Games/FanClub/NtrIdolFan.cs b/Assets/Scripts/Games/FanClub/NtrIdolFan.cs index a6953b479..8122fd13d 100644 --- a/Assets/Scripts/Games/FanClub/NtrIdolFan.cs +++ b/Assets/Scripts/Games/FanClub/NtrIdolFan.cs @@ -106,10 +106,8 @@ namespace HeavenStudio.Games.Scripts_FanClub } if (PlayerInput.Pressing()) { - Debug.Log("song pos: " + cond.songPositionInBeats + ", clap start: " + clappingStartTime); if (clappingStartTime != Single.MinValue && cond.songPositionInBeats > clappingStartTime + 2f && !stopCharge) { - Debug.Log("ChargeOut"); animator.Play("FanClapCharge", -1, 0); stopCharge = true; } @@ -118,7 +116,6 @@ namespace HeavenStudio.Games.Scripts_FanClub { if (clappingStartTime != Single.MinValue && cond.songPositionInBeats > clappingStartTime + 2f && stopCharge && !FanClub.instance.IsExpectingInputNow()) { - Debug.Log("JumpOut"); JumpStart(false); } else @@ -169,7 +166,6 @@ namespace HeavenStudio.Games.Scripts_FanClub animator.Play("FanClap", -1, 0); Jukebox.PlayOneShotGame("fanClub/play_clap"); Jukebox.PlayOneShotGame("fanClub/crap_impact"); - Debug.Log("Setting clappingStartTime to " + cond.songPositionInBeats); clappingStartTime = cond.songPositionInBeats; if (doCharge)