mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2025-02-16 13:58:26 +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");
|
file.WriteLine("skeleton");
|
||||||
anim.SetFrame(0);
|
anim.SetFrame(0);
|
||||||
for (int i = 0; i <= anim.FrameCount; i++)
|
for (int i = 0; i < anim.FrameCount; i++)
|
||||||
{
|
{
|
||||||
anim.NextFrame(Skeleton, false, true);
|
anim.NextFrame(Skeleton, false, true);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue