Fix argon key area lighting being hidden by other columns in one direction

This commit is contained in:
Dean Herbert 2022-10-07 19:02:08 +09:00
parent 12e9686092
commit e4657a7a3d
2 changed files with 3 additions and 2 deletions

View File

@ -17,8 +17,6 @@ namespace osu.Game.Rulesets.Mania.Skinning.Argon
{
public class ArgonHitExplosion : CompositeDrawable, IHitExplosion
{
private const float default_large_faint_size = 0.8f;
public override bool RemoveWhenNotAlive => true;
[Resolved]

View File

@ -150,6 +150,9 @@ private void load(IScrollingInfo scrollingInfo)
bottomIcon.Colour = colour.NewValue;
},
true);
// Yes, proxy everything.
column.TopLevelContainer.Add(CreateProxy());
}
private void onDirectionChanged(ValueChangedEvent<ScrollingDirection> direction)