mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 10:22:54 +08:00
Colour argon osu!taiko explosions based on the object hit
This commit is contained in:
parent
eaf5813d1b
commit
a18a2e48f7
@ -1,9 +1,7 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
using osu.Framework.Extensions.Color4Extensions;
|
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Colour;
|
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Graphics.Effects;
|
using osu.Framework.Graphics.Effects;
|
||||||
using osu.Framework.Graphics.Shapes;
|
using osu.Framework.Graphics.Shapes;
|
||||||
@ -18,7 +16,9 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Argon
|
|||||||
public partial class ArgonHitExplosion : CompositeDrawable, IAnimatableHitExplosion
|
public partial class ArgonHitExplosion : CompositeDrawable, IAnimatableHitExplosion
|
||||||
{
|
{
|
||||||
private readonly TaikoSkinComponents component;
|
private readonly TaikoSkinComponents component;
|
||||||
|
|
||||||
private readonly Circle outer;
|
private readonly Circle outer;
|
||||||
|
private readonly Circle inner;
|
||||||
|
|
||||||
public ArgonHitExplosion(TaikoSkinComponents component)
|
public ArgonHitExplosion(TaikoSkinComponents component)
|
||||||
{
|
{
|
||||||
@ -34,13 +34,9 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Argon
|
|||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Colour = ColourInfo.GradientVertical(
|
|
||||||
new Color4(255, 227, 236, 255),
|
|
||||||
new Color4(255, 198, 211, 255)
|
|
||||||
),
|
|
||||||
Masking = true,
|
Masking = true,
|
||||||
},
|
},
|
||||||
new Circle
|
inner = new Circle
|
||||||
{
|
{
|
||||||
Name = "Inner circle",
|
Name = "Inner circle",
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
@ -48,12 +44,6 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Argon
|
|||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Colour = Color4.White,
|
Colour = Color4.White,
|
||||||
Size = new Vector2(0.85f),
|
Size = new Vector2(0.85f),
|
||||||
EdgeEffect = new EdgeEffectParameters
|
|
||||||
{
|
|
||||||
Type = EdgeEffectType.Glow,
|
|
||||||
Colour = new Color4(255, 132, 191, 255).Opacity(0.5f),
|
|
||||||
Radius = 45,
|
|
||||||
},
|
|
||||||
Masking = true,
|
Masking = true,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -63,6 +53,16 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Argon
|
|||||||
{
|
{
|
||||||
this.FadeOut();
|
this.FadeOut();
|
||||||
|
|
||||||
|
bool isRim = (drawableHitObject.HitObject as Hit)?.Type == HitType.Rim;
|
||||||
|
|
||||||
|
outer.Colour = isRim ? ArgonInputDrum.RIM_HIT_GRADIENT : ArgonInputDrum.CENTRE_HIT_GRADIENT;
|
||||||
|
inner.EdgeEffect = new EdgeEffectParameters
|
||||||
|
{
|
||||||
|
Type = EdgeEffectType.Glow,
|
||||||
|
Colour = (isRim ? ArgonInputDrum.RIM_HIT_GLOW : ArgonInputDrum.CENTRE_HIT_GLOW).Opacity(0.5f),
|
||||||
|
Radius = 45,
|
||||||
|
};
|
||||||
|
|
||||||
switch (component)
|
switch (component)
|
||||||
{
|
{
|
||||||
case TaikoSkinComponents.TaikoExplosionGreat:
|
case TaikoSkinComponents.TaikoExplosionGreat:
|
||||||
|
@ -19,6 +19,20 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Argon
|
|||||||
{
|
{
|
||||||
public partial class ArgonInputDrum : AspectContainer
|
public partial class ArgonInputDrum : AspectContainer
|
||||||
{
|
{
|
||||||
|
public static readonly ColourInfo RIM_HIT_GRADIENT = ColourInfo.GradientHorizontal(
|
||||||
|
new Color4(227, 248, 255, 255),
|
||||||
|
new Color4(198, 245, 255, 255)
|
||||||
|
);
|
||||||
|
|
||||||
|
public static readonly Colour4 RIM_HIT_GLOW = new Color4(126, 215, 253, 255);
|
||||||
|
|
||||||
|
public static readonly ColourInfo CENTRE_HIT_GRADIENT = ColourInfo.GradientHorizontal(
|
||||||
|
new Color4(255, 227, 236, 255),
|
||||||
|
new Color4(255, 198, 211, 255)
|
||||||
|
);
|
||||||
|
|
||||||
|
public static readonly Colour4 CENTRE_HIT_GLOW = new Color4(255, 147, 199, 255);
|
||||||
|
|
||||||
private const float rim_size = 0.3f;
|
private const float rim_size = 0.3f;
|
||||||
|
|
||||||
public ArgonInputDrum()
|
public ArgonInputDrum()
|
||||||
@ -141,14 +155,11 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Argon
|
|||||||
Anchor = anchor,
|
Anchor = anchor,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Colour = ColourInfo.GradientHorizontal(
|
Colour = RIM_HIT_GRADIENT,
|
||||||
new Color4(227, 248, 255, 255),
|
|
||||||
new Color4(198, 245, 255, 255)
|
|
||||||
),
|
|
||||||
EdgeEffect = new EdgeEffectParameters
|
EdgeEffect = new EdgeEffectParameters
|
||||||
{
|
{
|
||||||
Type = EdgeEffectType.Glow,
|
Type = EdgeEffectType.Glow,
|
||||||
Colour = new Color4(126, 215, 253, 170),
|
Colour = RIM_HIT_GLOW.Opacity(0.66f),
|
||||||
Radius = 50,
|
Radius = 50,
|
||||||
},
|
},
|
||||||
Alpha = 0,
|
Alpha = 0,
|
||||||
@ -166,14 +177,11 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Argon
|
|||||||
Anchor = anchor,
|
Anchor = anchor,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Colour = ColourInfo.GradientHorizontal(
|
Colour = CENTRE_HIT_GRADIENT,
|
||||||
new Color4(255, 227, 236, 255),
|
|
||||||
new Color4(255, 198, 211, 255)
|
|
||||||
),
|
|
||||||
EdgeEffect = new EdgeEffectParameters
|
EdgeEffect = new EdgeEffectParameters
|
||||||
{
|
{
|
||||||
Type = EdgeEffectType.Glow,
|
Type = EdgeEffectType.Glow,
|
||||||
Colour = new Color4(255, 147, 199, 255),
|
Colour = CENTRE_HIT_GLOW,
|
||||||
Radius = 50,
|
Radius = 50,
|
||||||
},
|
},
|
||||||
Size = new Vector2(1 - rim_size),
|
Size = new Vector2(1 - rim_size),
|
||||||
|
Loading…
Reference in New Issue
Block a user