fixes for demo, jamfile
This commit is contained in:
@@ -325,7 +325,7 @@ void GimpactConcaveDemo::initPhysics()
|
||||
//btOverlappingPairCache* broadphase = new btSimpleBroadphase();
|
||||
//m_broadphase = new btSimpleBroadphase();
|
||||
|
||||
LONG maxProxies = 1024;
|
||||
int maxProxies = 1024;
|
||||
btVector3 worldAabbMin(-10000,-10000,-10000);
|
||||
btVector3 worldAabbMax( 10000, 10000, 10000);
|
||||
m_broadphase = new bt32BitAxisSweep3(worldAabbMin,worldAabbMax,maxProxies);
|
||||
|
||||
21
Demos/GimpactTestDemo/Jamfile
Normal file
21
Demos/GimpactTestDemo/Jamfile
Normal file
@@ -0,0 +1,21 @@
|
||||
SubDir TOP Demos GimpactTestDemo ;
|
||||
|
||||
#some demos need extra functionality, Collada / ConvexDecomposition etc.
|
||||
|
||||
rule ExtraDemo1
|
||||
|
||||
{
|
||||
Application $(<) : $(>) : noinstall console nomanifest ;
|
||||
LinkWith $(<) : GIMPACT bulletopenglsupport bulletdynamics bulletcollision bulletmath ;
|
||||
CFlags $(<) :
|
||||
[ FIncludes $(TOP)/Demos/OpenGL ]
|
||||
[ FIncludes $(TOP)/Extras/GIMPACT/include ]
|
||||
|
||||
;
|
||||
|
||||
MsvcIncDirs $(<) :
|
||||
"../../Demos/OpenGL"
|
||||
"../../Extras/GIMPACT/include" ;
|
||||
}
|
||||
|
||||
ExtraDemo1 GimpactTestDemo : [ Wildcard *.h *.cpp ] ;
|
||||
@@ -43,6 +43,7 @@ SubInclude TOP Demos BspDemo ;
|
||||
SubInclude TOP Demos VehicleDemo ;
|
||||
SubInclude TOP Demos CollisionDemo ;
|
||||
SubInclude TOP Demos CollisionInterfaceDemo ;
|
||||
SubInclude TOP Demos GimpactTestDemo ;
|
||||
SubInclude TOP Demos MovingConcaveDemo ;
|
||||
SubInclude TOP Demos ConcaveDemo ;
|
||||
SubInclude TOP Demos ConstraintDemo ;
|
||||
|
||||
Reference in New Issue
Block a user