I have a question related to a displayGroup in a snapshot. I use a snapshot like this:
local myGroup = displayNewGroup() -- background pic, text and buttons added to the myGroup here mySnap = display.newSnapshot( myGroup.width,myGroup.height ) mySnap.group:insert( myGroup ) -- 2.5d transition with mySnap here --\> here I want my snapshot back converted to the original displayGroup
how can I realize line 10 ?