Skip to content

Atomz/super-animation-samples

 
 

Repository files navigation

I create a tool named Super Animation Converter, which is a simple SWF (a file format supported by Adobe Flash Player software) converter. It can parse and extract transformation data from SWF file. With these transformation data and the right images, you can reproduce the animation in any game engine just as Adobe Flash Player can do.

The native animation solution in Cocos2D game engine is “frame by frame” animation, which means if there are 20 frames in your animation, you need 20 pieces of image(texture), and draw these images one by one on the screen to create animation effect. There are two flaws in this solution:

  1. High resource consuming, one frame one image;

  2. Hard to make smooth animation, since no interpolation between frames, which means it “jumps” directly from the current frame to the next frame.

So I try to provide a better animation solution which is based on Super Animation Converter for Cocos2D game engine. The idea is very simple:

  1. Use Flash as your animation editor, create any animation you want in it, then export these animation as SWF file.

  2. Parse the SWF file with Super Animation Converter, get the transformation data and images from the SWF file.

  3. Reproduce the animation in Cocos2D game engine with the transformation data and images.

Please refer to super_anim_help_english_version_1.pdf.

P.S.:

I've implemented this idea on "Cocos2D-X" & "Cocos2D for iPhone".

The implementation for "Cocos2D for iPhone" is in "Cocos2D_for_iPhone" folder.

intro

About

A New Animation Solution based on SWF for Cocos2d Game Engine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published