Implement column background skinning

This commit is contained in:
smoogipoo
2020-03-30 23:14:30 +09:00
parent 2b5e9885f6
commit 44727eb2b8
7 changed files with 288 additions and 4 deletions

View File

@ -38,10 +38,16 @@ namespace osu.Game.Rulesets.Mania.Skinning
case GameplaySkinComponent<HitResult> resultComponent:
return getResult(resultComponent);
case ManiaSkinComponent _:
case ManiaSkinComponent maniaComponent:
if (!isLegacySkin.Value)
return null;
switch (maniaComponent.Component)
{
case ManiaSkinComponents.ColumnBackground:
return new LegacyColumnBackground();
}
break;
}