Rewrite - Add empty drawable whenever sprite not found

This commit is contained in:
cadon0 2020-11-10 21:57:29 +13:00
parent 6446074976
commit 539806e9d6
1 changed files with 2 additions and 18 deletions

View File

@ -118,24 +118,8 @@ private void load(TextureStore textureStore, Storyboard storyboard)
for (int frame = 0; frame < Animation.FrameCount; frame++)
{
string framePath = Animation.Path.Replace(".", frame + ".");
Drawable sprite = storyboard.CreateSpriteFromResourcePath(framePath, textureStore);
if (sprite != null)
{
Drawable sprite = storyboard.CreateSpriteFromResourcePath(framePath, textureStore) ?? Drawable.Empty();
AddFrame(sprite, Animation.FrameDelay);
continue;
}
framePath = Animation.Path.Replace("0.", frame + ".");
sprite = storyboard.CreateSpriteFromResourcePath(framePath, textureStore);
if (sprite != null)
{
AddFrame(sprite, Animation.FrameDelay);
}
// todo: handle animation intentionally declared with more frames than sprites to cause a blinking effect
// e.g. beatmap 5381's "spr\play-skip.png"
}
Animation.ApplyTransforms(this);