mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 22:00:05 +00:00
9708392322
add UDP network connection for physics client <-> server. also set spinning friction in rolling friction demo (otherwise objects may keep on spinning forever)
23 lines
422 B
C++
23 lines
422 B
C++
#include "PhysicsDirectC_API.h"
|
|
|
|
#include "PhysicsDirect.h"
|
|
|
|
#include "PhysicsServerCommandProcessor.h"
|
|
|
|
|
|
|
|
//think more about naming. The b3ConnectPhysicsLoopback
|
|
b3PhysicsClientHandle b3ConnectPhysicsDirect()
|
|
{
|
|
PhysicsServerCommandProcessor* sdk = new PhysicsServerCommandProcessor;
|
|
|
|
PhysicsDirect* direct = new PhysicsDirect(sdk);
|
|
bool connected = direct->connect();
|
|
return (b3PhysicsClientHandle )direct;
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|