mirror of
https://github.com/ppy/osu.git
synced 2025-01-09 13:02:54 +08:00
Merge branch 'master' into test-snaking
This commit is contained in:
commit
49e082b708
@ -132,6 +132,12 @@ namespace osu.Game.Rulesets.Osu.Skinning
|
|||||||
return SkinUtils.As<TValue>(new BindableFloat(LEGACY_CIRCLE_RADIUS));
|
return SkinUtils.As<TValue>(new BindableFloat(LEGACY_CIRCLE_RADIUS));
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case OsuSkinConfiguration.HitCircleOverlayAboveNumber:
|
||||||
|
// See https://osu.ppy.sh/help/wiki/Skinning/skin.ini#%5Bgeneral%5D
|
||||||
|
// HitCircleOverlayAboveNumer (with typo) should still be supported for now.
|
||||||
|
return source.GetConfig<OsuSkinConfiguration, TValue>(OsuSkinConfiguration.HitCircleOverlayAboveNumber) ??
|
||||||
|
source.GetConfig<OsuSkinConfiguration, TValue>(OsuSkinConfiguration.HitCircleOverlayAboveNumer);
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
@ -12,6 +12,7 @@ namespace osu.Game.Rulesets.Osu.Skinning
|
|||||||
AllowSliderBallTint,
|
AllowSliderBallTint,
|
||||||
CursorExpand,
|
CursorExpand,
|
||||||
CursorRotate,
|
CursorRotate,
|
||||||
HitCircleOverlayAboveNumber
|
HitCircleOverlayAboveNumber,
|
||||||
|
HitCircleOverlayAboveNumer // Some old skins will have this typo
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user