I have a quick question on removing objects. If you have something like:
local game = display.newGroup()
local ground = display.newImageRect("ground.png", 1000, 100)
game:insert(ground)
local wheel = display.newCircle(0, 0, 30)
game:insert( wheel )
Would it be possible to remove all of the objects in the game group at once, or would I have to remove both objects separately? Thanks for your help!