It seems like the order that willEnterScene and didExitScene gets called has recently changed. Has anyone else noticed this? This change happened in the last month or so.
it used to be like this for Scene A and B
A.willEnterScene
A.enterScene
A.exitScene
A.didExitScene
B.willEnterScene
B.enterScene
B.exitScene
B.didExitScene
but now it seems like its
A.willEnterScene
A.enterScene
A.exitScene
B.willEnterScene
A.didExitScene
B.enterScene
B.exitScene
B.didExitScene
This introduces a lot of bugs in my code which assumed the other way. Is this intentional new behavior? [import]uid: 122310 topic_id: 33002 reply_id: 333002[/import]