Dear Community,
This is the thread where you can post all your questions and solutions as you upgrade your project to 4.21!
~~~
error C2039: 'GetPhysXScene': is not a member of 'FPhysScene_PhysX'
becomes
~~~
'GetPxRigidActor_AssumesLocked': is not a member of 'FBodyInstance' error.
becomes
~~~
Enjoy!
♥
Rama
This is the thread where you can post all your questions and solutions as you upgrade your project to 4.21!
~~~
error C2039: 'GetPhysXScene': is not a member of 'FPhysScene_PhysX'
Code:
PxScene* PScene = PhysScene->GetPhysXScene(PST_Sync);
Code:
PxScene* PScene = PhysScene->GetPxScene(PST_Sync);
'GetPxRigidActor_AssumesLocked': is not a member of 'FBodyInstance' error.
Code:
PxRigidActor* PRigidActor = Body->GetPxRigidActor_AssumesLocked();
Code:
#if WITH_PHYSX && PHYSICS_INTERFACE_PHYSX PxRigidActor* PRigidActor = FPhysicsInterface::GetPxRigidActor_AssumesLocked(BodyInstance->GetPhysicsActorHandle()); #endif
Enjoy!
♥
Rama
Comment