I am not sure how to approach this with Corona, I am trying to make circles fall from the top of the screen and then let users click on them to make them disappear.
The way I would roughly do it in a browser game would be to loop through a block of code that spawns a circle then give it a class name, so every circle has the same class name, then I would create a touch listener that would interact with that class, then use “this” to only allow it to effect the circle that was touched.
If this possible with corona? Can I use “this” instead of a variable name?
Also is object:setFillColor() a Graphics 2.0 thing only now? I made some stuff a while back and remember it as being a non graphics 2.0 thing but I could be wrong.