mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Removed logovisualisation changes
Now depends on https://github.com/ppy/osu/pull/9236 for accent color changes to apply
This commit is contained in:
@ -101,7 +101,6 @@ namespace osu.Game.Screens.Menu
|
|||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Alpha = 0.5f,
|
Alpha = 0.5f,
|
||||||
IsIntro = true,
|
|
||||||
AccentColour = Color4.DarkBlue,
|
AccentColour = Color4.DarkBlue,
|
||||||
Size = new Vector2(0.96f)
|
Size = new Vector2(0.96f)
|
||||||
},
|
},
|
||||||
|
@ -70,7 +70,6 @@ namespace osu.Game.Screens.Menu
|
|||||||
|
|
||||||
private IShader shader;
|
private IShader shader;
|
||||||
private readonly Texture texture;
|
private readonly Texture texture;
|
||||||
public bool IsIntro = false;
|
|
||||||
|
|
||||||
private Bindable<User> user;
|
private Bindable<User> user;
|
||||||
private Bindable<Skin> skin;
|
private Bindable<Skin> skin;
|
||||||
@ -89,11 +88,8 @@ namespace osu.Game.Screens.Menu
|
|||||||
user = api.LocalUser.GetBoundCopy();
|
user = api.LocalUser.GetBoundCopy();
|
||||||
skin = skinManager.CurrentSkin.GetBoundCopy();
|
skin = skinManager.CurrentSkin.GetBoundCopy();
|
||||||
|
|
||||||
if (!IsIntro)
|
user.ValueChanged += _ => updateColour();
|
||||||
{
|
skin.BindValueChanged(_ => updateColour(), true);
|
||||||
user.ValueChanged += _ => updateColour();
|
|
||||||
skin.BindValueChanged(_ => updateColour(), true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateAmplitudes()
|
private void updateAmplitudes()
|
||||||
|
Reference in New Issue
Block a user