mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +00:00
Fix extra frame added to smd animation export (#659)
This commit is contained in:
parent
b1244fb019
commit
fe52c1cbc6
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ namespace Toolbox.Library.Animations
|
|||
|
||||
file.WriteLine("skeleton");
|
||||
anim.SetFrame(0);
|
||||
for (int i = 0; i <= anim.FrameCount; i++)
|
||||
for (int i = 0; i < anim.FrameCount; i++)
|
||||
{
|
||||
anim.NextFrame(Skeleton, false, true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue