Skip to content

Commit

Permalink
Fix arc score bug + 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yojohanshinwataikei committed Oct 2, 2020
1 parent 2b4048d commit 1624e55
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Assets/Misc/BuildTimestamp.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
637371716767105336
637372395510882808
5 changes: 5 additions & 0 deletions Assets/Misc/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.3.1
- 修复 arc 和 arctap 的分数与 combo 计算中的问题

---

欢迎来到 Arcade-plus 0.3.0!
本次更新的内容有
- Unity 版本更新至 2020.1
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Gameplay/Managers/ArcScoreManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private int CalculateCombo(int timing)
}
foreach (var arc in ArcArcManager.Instance.Arcs)
{
if (arc.Timing > timing) break;
if (arc.Timing > timing) continue;
foreach (float t in arc.JudgeTimings)
{
if (t <= timing)
Expand Down
2 changes: 1 addition & 1 deletion ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ PlayerSettings:
16:10: 0
16:9: 1
Others: 0
bundleVersion: 0.3.0
bundleVersion: 0.3.1
preloadedAssets:
- {fileID: 4800000, guid: bb26ede1beb997943a7d6295fbf075d4, type: 3}
- {fileID: 4800000, guid: 1e340182228616b4ca7dad1e80f4d319, type: 3}
Expand Down

0 comments on commit 1624e55

Please sign in to comment.