mirror of https://github.com/ppy/osu
Fx component lookups being incorrect for non-databased legacy skins
This commit is contained in:
parent
3cdd3cc9fa
commit
62641c149d
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
|
@ -155,6 +155,11 @@ public override Drawable GetDrawableComponent(string componentName)
|
|||
// Spacing value was reverse-engineered from the ratio of the rendered sprite size in the visual inspector vs the actual texture size
|
||||
Spacing = new Vector2(-Configuration.HitCircleOverlap * 0.89f, 0)
|
||||
};
|
||||
|
||||
default:
|
||||
string lastPiece = componentName.Split('/').Last();
|
||||
componentName = componentName.StartsWith("Gameplay/taiko/") ? "taiko-" + lastPiece : lastPiece;
|
||||
break;
|
||||
}
|
||||
|
||||
return getAnimation(componentName, animatable, looping);
|
||||
|
@ -226,11 +231,8 @@ private string getPathForFile(string filename)
|
|||
{
|
||||
bool hasExtension = filename.Contains('.');
|
||||
|
||||
string lastPiece = filename.Split('/').Last();
|
||||
var legacyName = filename.StartsWith("Gameplay/taiko/") ? "taiko-" + lastPiece : lastPiece;
|
||||
|
||||
var file = source.Files.Find(f =>
|
||||
string.Equals(hasExtension ? f.Filename : Path.ChangeExtension(f.Filename, null), legacyName, StringComparison.InvariantCultureIgnoreCase));
|
||||
string.Equals(hasExtension ? f.Filename : Path.ChangeExtension(f.Filename, null), filename, StringComparison.InvariantCultureIgnoreCase));
|
||||
return file?.FileInfo.StoragePath;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue