animation question

Blitz3D Forums/Blitz3D Beginners Area/animation question

Is there any way I could cram all of my animations for my main character into one file, and sort them into sequences by frames (example: from frame 5 to 30), effectively saving a lot of memory?

any help would be appreciated. thanks

Your animated mesh stores all the animation information in it already between frames in order so you don't need any other files.

you can load them all into your main mesh and use extractanimseq or have a seperate .b3d file with all the anims, use loadanimseq to load the entire sequence then use extractanimseq on that.

PERFECT! thanks! I didn't see that one in the manual, thanx a metric ton :D