mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
Do not lookup default kiai explosion if skin has own
This commit is contained in:
parent
646833a059
commit
21709ba4bc
@ -114,6 +114,13 @@ namespace osu.Game.Rulesets.Taiko.Skinning
|
||||
|
||||
return null;
|
||||
|
||||
case TaikoSkinComponents.TaikoExplosionKiai:
|
||||
// suppress the default kiai explosion if the skin brings its own sprites.
|
||||
if (hasExplosion.Value)
|
||||
return Drawable.Empty();
|
||||
|
||||
return null;
|
||||
|
||||
case TaikoSkinComponents.Scroller:
|
||||
if (GetTexture("taiko-slider") != null)
|
||||
return new LegacyTaikoScroller();
|
||||
|
Loading…
Reference in New Issue
Block a user