Skip to content

Commit

Permalink
Ensure repeat is set
Browse files Browse the repository at this point in the history
  • Loading branch information
AristurtleDev committed Apr 2, 2024
1 parent 2ecd850 commit ea2ded0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/AsepriteDotNet/Aseprite/Types/AsepriteTag.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ internal unsafe AsepriteTag(AsepriteTagProperties properties, string name)
From = properties.From;
To = properties.To;
LoopDirection = (AsepriteLoopDirection)properties.Direction;
Name = name;
Name = name;
Repeat = properties.Repeat;
Color = new Rgba32(properties.R, properties.G, properties.B);
}
}

0 comments on commit ea2ded0

Please sign in to comment.