k8w Posted December 13, 2017 Share Posted December 13, 2017 What is the best practise of animation workflow for Pixi.js? It seems the best animation design tool is still Adobe Animate. I just tried pixi-animate, pixi-flash, and PixiGAFPlayer. So which one is the best you think? Features I need: GUI keyframe editor Tween FrameScript Sound getChildByName Quote Link to comment Share on other sites More sharing options...
ivan.popelyshev Posted December 13, 2017 Share Posted December 13, 2017 Yes, GAF and pixi-animate are the best things for that. Alternatively, for character animations - Spine and Creature. But then, you'll have to do something yourself. FrameScript can be emulated through events. For "getChildByName", there's that snippet: Container.prototype.getChildByName = function getChildByName(name) { for (let i = 0; i < this.children.length; i++) { if (this.children[i].name === name) { return this.children[i]; } } return null; }; I'm developing proprorietary solution for that problem too Runtime can handle really huge number of instances of characters, spine and creature dont have anything like that. At the same time, there is Flash API and support of SWF files. Hope we'll start giving it to clients (B2B) next year. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.