Search the Community
Showing results for tags 'combo'.
-
Hi, i want to create a combo attack just like in tekken game, basically changing frames when the player press the next key within a specific span of time, i tried the following but still not manage it work. Any help is appreciated. if (this.melee.isDown) { meleeFrameStart = 16;5 meleeFrameEnd = 23; if (this.melee.upDuration(1000)) { if (gokussgod.frame < meleeFrameEnd) { gokussgod.frame = gokussgod.frame++; } else { gokussgod.frame = meleeFrameStart; } } else { gokussgod.frame = meleeFrameStart; } }
-
Hi there! This week we want to share with you one of the earlier games that we developed, Snacky Line! Snacky Line is a cute little connecting games where you must connect two object of the same type quickly to get higher combo and score. Far away objects can be connected as long as there are no other object between them. For such a short games, we do learn a lot about Phaser when making this Link: http://j.mp/snackyline Hope you like this simple games! As usual, do let me know if you have feedback or problem