mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
Fix for Issue #96 for DAE updating crash
This commit is contained in:
parent
9ed0f467d8
commit
89ad23a925
4 changed files with 22 additions and 2 deletions
|
|
@ -53,7 +53,8 @@ void PxPlayer::_releaseController()
|
|||
if ( mController )
|
||||
{
|
||||
mController->getActor()->userData = NULL;
|
||||
mWorld->releaseController( *mController );
|
||||
mWorld->getStaticChangedSignal().remove( this, &PxPlayer::_onStaticChanged );
|
||||
mWorld->releaseController( *mController );
|
||||
mController = NULL;
|
||||
}
|
||||
}
|
||||
|
|
@ -99,6 +100,8 @@ void PxPlayer::init( const char *type,
|
|||
//mOriginOffset = 1.0f;
|
||||
}
|
||||
|
||||
mWorld->getStaticChangedSignal().notify( this, &PxPlayer::_onStaticChanged );
|
||||
|
||||
// Put the kinematic actor on group 29.
|
||||
NxActor *kineActor = mController->getActor();
|
||||
kineActor->setGroup( 29 );
|
||||
|
|
@ -110,6 +113,11 @@ void PxPlayer::init( const char *type,
|
|||
kineActor->userData = &mUserData;
|
||||
}
|
||||
|
||||
void PxPlayer::_onStaticChanged()
|
||||
{
|
||||
mController->reportSceneChanged();
|
||||
}
|
||||
|
||||
void PxPlayer::_onPhysicsReset( PhysicsResetEvent reset )
|
||||
{
|
||||
// The PhysX controller will crash out if it doesn't clear its
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue