Game is choppy...

kenrobolkenrobol Member, PRO Posts: 39

http://arcade.gamesalad.com/game/123661

When I spawn a game bad guy, if I press it, it give me too many points? Any suggestions on how to make it work better?

Comments

  • stahboystahboy Member, PRO Posts: 150

    It might be that you are tapping the actor too many times and with each tap you get the desired amount of points. I would create a index self attribute in the tapping actor called score and keep it at 0. And then create a rule that when touch is pressed and score is 0, then give points. Also with the give points, change attribute score to 1. So that you can only tap the actor once.

    Hope this helps

    stahboy

  • kenrobolkenrobol Member, PRO Posts: 39

    I am doing that right now. I press it and using a mouse. Points go crazy .

  • KillerPenguinStudiosKillerPenguinStudios Member Posts: 1,291

    What you need to have is a real attribute called score and in the picture actors you need it to say

    when touch is pressed;
    Change attribute: game.score to game.score+1
    Destroy actor

    Also, you need to fix your sounds as they all start colliding and distort and static.

Sign In or Register to comment.