Cleaning up those dang warnings (#826)

* done i think

wahoo

* this one too

lol
This commit is contained in:
ThePurpleAnon
2024-04-07 16:25:54 -05:00
committed by minenice55
parent 5d8daa784c
commit 904763b296
20 changed files with 47 additions and 45 deletions

View File

@ -224,7 +224,7 @@ namespace HeavenStudio.Games
private static int wantKamoneType = (int)KamoneResponseType.Through;
private static bool wantKamoneAlt = false;
private static double wantBigReady = double.MinValue;
private bool hasJumped = false;
//private bool hasJumped = false; Unused value - Marc
private bool noJudgement = false;
private bool noJudgementInput = false;
@ -391,7 +391,7 @@ namespace HeavenStudio.Games
float IDOL_SHADOW_SCALE = 1.18f;
if (conductor.unswungSongPositionInBeatsAsDouble >= idolJumpStartTime && conductor.unswungSongPositionInBeatsAsDouble < idolJumpStartTime + 1f)
{
hasJumped = true;
//hasJumped = true; Unused value - Marc
float yMul = jumpPos * 2f - 1f;
float yWeight = -(yMul * yMul) + 1f;
ArisaRootMotion.transform.localPosition = new Vector3(0, 2f * yWeight + 0.25f);