I just downloaded and compiled the new OGRE 0.15.2 release build and was very happy to read that the Debug-Shutdown bug was fixed.
But before I was even able to test that another problem occurred:
My application now crashes with an unhandled exception, everytime a SceneNode is created.
Code: Select all
Unhandled exception at 0x1040061d in PathFinderd.exe: 0xC0000005: Access violation reading location 0x0000010c.Code: Select all
SceneNode* testNode = static_cast<SceneNode*>(SceneManagerWrapper::getInstance()->getRootSceneNode()->createChild());The program (still) works fine, when I use 0.15.1, but with 0.15.2 I get this exception everytime I create a node.
Has anyone had a similar problem? Have I missed important changes from 0.15.1 to 0.15.2? Are SceneNodes created differently? Since I only get disassembly debug informations, debugging is not really effective but I have noticed that SceneManagerWrapper::getInstance() normally returns the SceneManager object but when getRootSceneNode() is called, the exception occurs.
Any ideas?

