Skip to content

Commit

Permalink
Fix incorrect constant
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Oct 29, 2022
1 parent 19e0b90 commit a985151
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Catch/Skinning/Argon/ArgonBananaPiece.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected override void Update()

// relative to time on screen
const float lens_flare_start = 0.3f;
const float lens_flare_end = 0.3f;
const float lens_flare_end = 0.8f;

// Undo some of the parent scale being applied to make the lens flare feel a bit better..
float scale = parent_scale_application + (1 - parent_scale_application) * (1 / (ObjectState.DisplaySize.X / (CatchHitObject.OBJECT_RADIUS * 2)));
Expand Down

0 comments on commit a985151

Please sign in to comment.