brajeshlal
24-12-2006 20:56:03
I able to do a tutorial from
http://walaber.com/newton_wiki/index.ph ... ners_guide
Now i implemented in my project.
my create frame listner method has
The error i get is:
Unhandled exception at 0x005d17fd (msvcp80d.dll) in vrGame2.exe: 0xC0000005: Access violation writing location 0x0000000f.
Wheni comment basic frame listener class then
no collison is happening
Thanks
http://walaber.com/newton_wiki/index.ph ... ners_guide
Now i implemented in my project.
my create frame listner method has
void createFrameListener(void)
{
mFrameListener= new vrGame2FrameListener(mSceneMgr, mWindow, mCamera, mGUIRenderer, mWorld);
// Brajesh
// To off the default overlay given by the ogre i.e. its FPS and all
mFrameListener->showDebugOverlay(false);
// Brajesh
mRoot->addFrameListener(mFrameListener);
// Newton
mOgreNewtListener = new OgreNewt::BasicFrameListener(mWindow,mSceneMgr,mWorld,60);
mRoot->addFrameListener(mOgreNewtListener); //including this line causes app to crash
}
The error i get is:
Unhandled exception at 0x005d17fd (msvcp80d.dll) in vrGame2.exe: 0xC0000005: Access violation writing location 0x0000000f.
Wheni comment basic frame listener class then
no collison is happening
Thanks