Fix incorrect application layer causing completely discoloured circles

This commit is contained in:
Dean Herbert
2023-01-11 18:25:24 +09:00
parent 0d1046ed83
commit e9571be4ab
2 changed files with 24 additions and 15 deletions

View File

@ -6,11 +6,18 @@ using osu.Framework.Audio.Track;
using osu.Framework.Graphics;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Graphics.Containers;
using osuTK.Graphics;
namespace osu.Game.Skinning
{
public partial class LegacyKiaiFlashingDrawable : BeatSyncedContainer
{
public Color4 KiaiGlowColour
{
get => flashingDrawable.Colour;
set => flashingDrawable.Colour = value;
}
private readonly Drawable flashingDrawable;
private const float flash_opacity = 0.3f;