Jump to content

The best practise of animation workflow


k8w
 Share

Recommended Posts

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:

  1. GUI keyframe editor
  2. Tween
  3. FrameScript
  4. Sound
  5. getChildByName
Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...