Hello all,
I have a multiscene project. It works just as it should changing scenes from intro to game to end scene and back to intro again. But after about three cycles, I get this inexplicable error “attemp to index local group, a nil value”. Does anyone have any idea why this is occuring and what I can do to fix it? Here’s where the group I created is.
function scene:enterScene( event )
local group = self.view
I also have this code in the same file
function scene:didExitScene( event )
local group = self.view
storyboard.purgeScene(‘gamescene’);
Runtime:removeEventListener(‘enterFrame’, frameUpdate);
all help appreciated!