Skip to content

Commit

Permalink
Judgement: Move arc first judgement timing to beginning of arc timing
Browse files Browse the repository at this point in the history
  • Loading branch information
rechyou committed Sep 26, 2024
1 parent d016931 commit 4f8a6d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Scripts/Gameplay/Data/Events/Arc.Judgement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ public override void RecalculateJudgeTimings()
if (count <= whatTheFuckDoesThisMean)
{
TotalCombo = 1;
FirstJudgeTime = Timing + (duration / 2);
FirstJudgeTime = Timing;
}
else
{
TotalCombo = count - whatTheFuckDoesThisMean;
FirstJudgeTime = Timing + (whatTheFuckDoesThisMean * TimeIncrement);
FirstJudgeTime = Timing;
}
}

Expand Down

0 comments on commit 4f8a6d3

Please sign in to comment.