Skip to content

Commit

Permalink
Merge pull request #21056 from peppy/fix-argon-explosion-size
Browse files Browse the repository at this point in the history
Fix argon hit circle outer gradient getting smaller each state application
  • Loading branch information
smoogipoo authored Nov 1, 2022
2 parents fcf0ad2 + c179f0b commit 947e6d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ private void updateStateTransforms(DrawableHitObject drawableHitObject, ArmedSta
// This is to give it a bomb-like effect, with the border "triggering" its animation when getting close.
using (BeginDelayedSequence(flash_in_duration / 12))
{
outerGradient.ResizeTo(outerGradient.Size * shrink_size, resize_duration, Easing.OutElasticHalf);
outerGradient.ResizeTo(OUTER_GRADIENT_SIZE * shrink_size, resize_duration, Easing.OutElasticHalf);
outerGradient
.FadeColour(Color4.White, 80)
.Then()
Expand Down

0 comments on commit 947e6d4

Please sign in to comment.