kellehk
And... one more improvement <img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile">
Dots can now fall many at once, they don't wait for other dots to stop moving.
https://www.dropbox.com/s/qm2biem1il1p8 ... .capx?dl=0
Pretty cool game by the way!
You can improve controls a bit (especially if you are planning to publish it for mobile).
Add another invisible sprite DotTouch, make it about 4 times bigger than the dot. Create a container with Dot and DotTouch for easier management, and pin DotTouch to each Dot on start of layout.
Change your touch events:
Touch -> On touched DotTouch
Touch -> Is touching DotTouch
You don't need to pick Dot inside the event, as it is in the same container, it will be picked automatically.
And DotTouch will be destroyed automatically too.