Add 'createCollisionObjectGraphicsObject' API for CommonPhysicsSetup Add 'pthread' dependency as workaround for NVIDIA graphics driver issue (see //See https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1248642 )
16 lines
353 B
C++
16 lines
353 B
C++
#ifndef SERIALIZE_SETUP_H
|
|
#define SERIALIZE_SETUP_H
|
|
#include "../../Demos/CommonRigidBodySetup.h"
|
|
|
|
class SerializeSetup : public CommonRigidBodySetup
|
|
{
|
|
public:
|
|
SerializeSetup();
|
|
virtual ~SerializeSetup();
|
|
|
|
virtual void initPhysics(GraphicsPhysicsBridge& gfxBridge);
|
|
virtual void stepSimulation(float deltaTime);
|
|
};
|
|
|
|
#endif //SERIALIZE_SETUP_H
|