--mp4=video.mp4 note that you have to re-convert for Quicktime ffmpeg -f mp4 -vcodec h264 -i test.mp4 -pix_fmt yuv420p test2.mp4 add the option to display text in 3d, used in Coriolis demo
17 lines
334 B
C
17 lines
334 B
C
|
|
#ifndef GYROSCOPIC_SETUP_H
|
|
#define GYROSCOPIC_SETUP_H
|
|
|
|
#include "Bullet3AppSupport/CommonRigidBodySetup.h"
|
|
|
|
struct GyroscopicSetup : public CommonRigidBodySetup
|
|
{
|
|
virtual void initPhysics(GraphicsPhysicsBridge& gfxBridge);
|
|
|
|
virtual void syncPhysicsToGraphics(GraphicsPhysicsBridge& gfxBridge);
|
|
|
|
};
|
|
|
|
|
|
#endif //GYROSCOPIC_SETUP_H
|