Remove LookupName from base ISkinComponentLookup

This commit is contained in:
Dean Herbert
2022-11-09 16:39:33 +09:00
parent 1aa0e40f2f
commit e19ba65f91
8 changed files with 26 additions and 31 deletions

View File

@ -35,10 +35,10 @@ namespace osu.Game.Rulesets.Osu.Skinning.Legacy
switch (osuComponent.Component)
{
case OsuSkinComponents.FollowPoint:
return this.GetAnimation(lookup.LookupName, true, true, true, startAtCurrentTime: false);
return this.GetAnimation("followpoint", true, true, true, startAtCurrentTime: false);
case OsuSkinComponents.SliderScorePoint:
return this.GetAnimation(lookup.LookupName, false, false);
return this.GetAnimation("sliderscorepoint", false, false);
case OsuSkinComponents.SliderFollowCircle:
var followCircleContent = this.GetAnimation("sliderfollowcircle", true, true, true);