Skip to content

Commit

Permalink
Realign color alpha modifier with update BS 1.21 value
Browse files Browse the repository at this point in the history
  • Loading branch information
ErisApps committed Apr 2, 2022
1 parent 2f040d5 commit 27b2e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HitScoreVisualizer/Models/HsvFlyingScoreEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public override void InitAndPresent(IReadonlyCutScoreBuffer cutScoreBuffer, floa
{
_text.text = cutScoreBuffer.cutScore.ToString();
_maxCutDistanceScoreIndicator.enabled = cutScoreBuffer.centerDistanceCutScore == cutScoreBuffer.noteScoreDefinition.maxCenterDistanceCutScore;
_colorAMultiplier = (double) cutScoreBuffer.cutScore > (double) cutScoreBuffer.maxPossibleCutScore * 0.899999976158142 ? 1f : 0.3f;
_colorAMultiplier = (double) cutScoreBuffer.cutScore > (double) cutScoreBuffer.maxPossibleCutScore * 0.9f ? 1f : 0.3f;
}
else
{
Expand Down

0 comments on commit 27b2e1e

Please sign in to comment.