How to add more Anim frames to Existing Animation?

Discuss any general programming issues here
Post Reply
Bugala
Posts: 1178
Joined: Sun Feb 14, 2010 7:11 pm

How to add more Anim frames to Existing Animation?

Post by Bugala »

when i make Animation from scrach i can simply do it:

BeginAnimStream

Then put as many times:
WriteAnimframe

And finally

FinishAnimStream.


however, What if i want to continue adding more frames to this same animation at later point? Is there a simple way to do it?

In way of:

LoadAnim
WriteAnimFrame(s)
FinishAnimStream

?
User avatar
airsoftsoftwair
Posts: 5446
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: How to add more Anim frames to Existing Animation?

Post by airsoftsoftwair »

Sorry, that's not possible. Workaround would be to extract all frames from the old anim and write them to the new one. But appending frames to an existing anim is currently not possible.
Post Reply