remove PhysXClient.*, it was not needed (use PhysicsDirect instead)

This commit is contained in:
erwincoumans
2019-02-20 19:57:10 -08:00
parent 6d224996ef
commit adf31c8f64
6 changed files with 6 additions and 1552 deletions

View File

@@ -1,13 +1,14 @@
#ifdef BT_ENABLE_PHYSX
#include "PhysXC_API.h"
#include "../PhysicsDirect.h"
#include "PhysXServerCommandProcessor.h"
#include "PhysXClient.h"
B3_SHARED_API b3PhysicsClientHandle b3ConnectPhysX()
{
PhysXServerCommandProcessor* sdk = new PhysXServerCommandProcessor;
PhysXClient* direct = new PhysXClient(sdk, true);
PhysicsDirect* direct = new PhysicsDirect(sdk, true);
bool connected;
connected = direct->connect();
return (b3PhysicsClientHandle)direct;