I am trying to make a game similar to Tap Tap Revenge. If you played this you might have an idea of how long notes coming. I wana integrate that functionality in my game.

I tried MotionStreak and Particles Effect but didn't able to get right one.

Do you guys have any valuable suggestions? Do share with me.

cheers

link|improve this question
Have you checked out the source for tap tap revolution? cre.ations.net/creation/tap-tap-revolution – Joe Apr 18 '11 at 14:34
feedback

1 Answer

I would do it this way:

  • You make / scale an image to fit your notes duration.

  • If you touch as the notes frame and the bottom of your note circle intersect, start a timer. Create an integer too, and make the timer add 1 to the integer every second.

  • if the timer goes over the notes duration, the user fails and the note gets removed. If the timer is the same or less than the duration, the user gets the points multiplied by the duration.

    I'll try to get out some code if you can't figure out how to do it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.