Hi guys!
When a display object is inside a Snapshot the parent attribute of the child is always nil. Why is that? Bug?
Example:
local ss = display.newSnapshot(100, 100) local c = display.newCircle(0, 0, 10) ss.group:insert(c) print(c.parent) -- nil