mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Do not lookup default kiai explosion if skin has own
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user