i've encountered an unhandled exception 0xC0000005: read access violation with the following code.
Worked fine with 1.7.3., now borked with 1.8.
Code: Select all
// copy all childs from the root node of the own scene graph
// under the specified node of the specified scenegraph
irr::core::list<irr::scene::ISceneNode*> const & childNode = PrivateSceneManager->getRootSceneNode()->getChildren();
for (irr::core::list<irr::scene::ISceneNode*>::ConstIterator child(childNode.begin()); child != childNode.end(); ++child
(*child)->clone(_Parentnode,_SceneManager); // !!!here is the Access violation!!!
Squarefox