开发者

How can I convert flash armature (ik) animation to frame-by-frame animation with jsfl

开发者 https://www.devze.com 2023-01-02 12:41 出处:网络
My objective is t开发者_如何学Co paste together several ( a lot, actually ) armature animations, each in a separate symbol. I have no idea how to do it, armature layers are a bit... strange. So i see

My objective is t开发者_如何学Co paste together several ( a lot, actually ) armature animations, each in a separate symbol. I have no idea how to do it, armature layers are a bit... strange. So i see only one solution: convert it to a regular layer.


There seems to be something weird with converting to frame-by-frame from jsfl. If you choose 'Convert to Frame By Frame' animation from the IDE, then you look in the History Panel(F10), Timeline's convertToKeyframes() function is used. It doesn't seem to do the same thing when you call it from JSFL though. You can see this if you Undo, then select that step from the History Panel and hit Replay.

You could create a movieclip for each armature though.

var doc      = fl.getDocumentDOM();
var timeline = doc.getTimeline();

//convert to keyframes, doesn't work the same way as 'Convert to Frame by Frame Animation' option from the IDE
//timeline.convertToKeyframes();

//make a movieclip for the selected armature
doc.convertToSymbol('movie clip', 'armatureName', 'top left');

I didn't undestand what you mean by 'paste together' though. Do you mean joining the armatures animation one after another ?

0

精彩评论

暂无评论...
验证码 换一张
取 消