It looks like you're new here. If you want to get involved, click one of these buttons!
Hello! I'm completely new to this and I need some help. I want to make a game where a white circle pops up in a random place and you have to try to touch it before it disappears. I really appreciate for the help! Thank you!
Comments
. @Jenny_Se See this program I wrote back in November.
http://twolivesleft.com/Codea/Talk/discussion/1874#Item_12
Thank you so much! That was really helpful! If you don't mind, can I ask you another question? How did you make the circles disappear and can they disappear faster as well?
In this section of code, I keep subtracting 1 from showLimit. If showLimit <=1, I stop drawing the circle else I draw the circle with the ellipse command. Each time you tap the circle in time, I draw another circle with the size 1 less than the previous one. So as you keep tapping the circles, they get smaller and you have less time to tap them. If you don't tap a circle in time, the game is over.
Thank you! You were really helpful!!
.@Jenny_Se Here is a simpler version. Maybe this will help more.
Oh, I see! Yeah, this was exactly what I was looking for! Thank you so much!!