diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2018-06-22 12:38:38 -0600 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2018-06-22 12:38:38 -0600 |
| commit | 9fa5dcc9310a8c6ff8c77a47a86303f7b950dcf3 (patch) | |
| tree | d7956fc8aabef903f354578d69d4d7fdf64ec928 /src/shared/phys/physcommon.cpp | |
| parent | 06d3e8182d018ca613f177f6ff7a3bbb6494cc79 (diff) | |
| download | brokengine-9fa5dcc9310a8c6ff8c77a47a86303f7b950dcf3.tar.gz brokengine-9fa5dcc9310a8c6ff8c77a47a86303f7b950dcf3.tar.bz2 brokengine-9fa5dcc9310a8c6ff8c77a47a86303f7b950dcf3.zip | |
Updated core
Updated all core files to prepare for tech demo
Diffstat (limited to 'src/shared/phys/physcommon.cpp')
| -rw-r--r-- | src/shared/phys/physcommon.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/shared/phys/physcommon.cpp b/src/shared/phys/physcommon.cpp index 4f506bb..b1c4c67 100644 --- a/src/shared/phys/physcommon.cpp +++ b/src/shared/phys/physcommon.cpp @@ -33,17 +33,17 @@ btSequentialImpulseConstraintSolver* Solver; void phys_genesis(){ BroadPhase = new btAxisSweep3(btVector3(-1000,-1000,-1000),btVector3(1000,1000,1000)); - printf("Broadphase\n"); + //printf("Broadphase\n"); CollisionConfiguration = new btDefaultCollisionConfiguration(); - printf("Collision config\n"); + //printf("Collision config\n"); Dispatcher = new btCollisionDispatcher(CollisionConfiguration); - printf("Dispatcher\n"); + //printf("Dispatcher\n"); Solver = new btSequentialImpulseConstraintSolver(); - printf("Solver\n"); + //printf("Solver\n"); World = new btDiscreteDynamicsWorld(Dispatcher, BroadPhase, Solver, CollisionConfiguration); - printf("Physics world init ok.\n"); + //printf("Physics world init ok.\n"); World->setGravity(btVector3(0,-10,0)); - printf("Created physics world: %p\n",World); + //printf("Created physics world: %p\n",World); } void phys_shutdown(void(*f)(btRigidBody*)){ |
