Added code repo

Hello all!

I’ve created a git repo for my entry at bit bucket. which can be found here.

I highly recommend using a version control system to everyone(especially git :D). It really can save you when you mess up, which happens to me a lot 😀

I also added my modified flixel+box2d+ktween library wrappers which can be found under src/. They make it easier to use box2dflash(2.1a) with flixel(beta version from git). For example, adding a circle body;


var body1:FlxB2Sprite;
body1 = new FlxB2Sprite(world, 25, 10); //world is defined at FlxB2State
body1.b2Type = b2Body.b2_dynamicBody; //do this before calling createCircle
body1.createCircle(); //create and add body to box2d world
add(body1); //add body to flixel display list

It also has KTween in flixel namespace  as FlxTween. You can use it like this;

FlxTween.to(text, 4, { x:150, y:150 } , Bounce.easeOut);

You can look at this for more info..

Hope you find them useful.. Cheers!