Rename variables

This commit is contained in:
Bartłomiej Dach 2020-11-10 12:20:26 +01:00
parent 539806e9d6
commit ce837eaba0
1 changed files with 4 additions and 4 deletions

View File

@ -115,11 +115,11 @@ public DrawableStoryboardAnimation(StoryboardAnimation animation)
[BackgroundDependencyLoader]
private void load(TextureStore textureStore, Storyboard storyboard)
{
for (int frame = 0; frame < Animation.FrameCount; frame++)
for (int frameIndex = 0; frameIndex < Animation.FrameCount; frameIndex++)
{
string framePath = Animation.Path.Replace(".", frame + ".");
Drawable sprite = storyboard.CreateSpriteFromResourcePath(framePath, textureStore) ?? Drawable.Empty();
AddFrame(sprite, Animation.FrameDelay);
string framePath = Animation.Path.Replace(".", frameIndex + ".");
Drawable frame = storyboard.CreateSpriteFromResourcePath(framePath, textureStore) ?? Drawable.Empty();
AddFrame(frame, Animation.FrameDelay);
}
Animation.ApplyTransforms(this);