Fix extra frame added to smd animation export (#659)
This commit is contained in:
parent
b1244fb019
commit
fe52c1cbc6
@ -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…
Reference in New Issue
Block a user