step the simulation 1 frame, so the initial starting position is ok.

added comment how to use FCollada instead of COLLADA_DOM
This commit is contained in:
ejcoumans
2006-06-19 22:03:07 +00:00
parent f2b79971a0
commit c4cd297f22
2 changed files with 8 additions and 0 deletions

View File

@@ -47,6 +47,13 @@ extern int gForwardAxis;
#include "GLDebugDrawer.h"
//either FCollada or COLLADA_DOM
//COLLADA_DOM and LibXML source code are included in Extras/ folder.
//COLLADA_DOM should compile under all platforms, and is enabled by default.
//If you want to compile with FCollada (under windows), add the FCollada sourcecode
//in Extras/FCollada, and define USE_FOLLADE, and include the library.
//#define USE_FCOLLADA 1
#ifdef USE_FCOLLADA

View File

@@ -370,6 +370,7 @@ int glutmain(int argc, char **argv,int width,int height,const char* title) {
glutMotionFunc(clientMotionFunc);
glutDisplayFunc( clientDisplay );
clientMoveAndDisplay();
glutMainLoop();
return 0;