| 33 | |
| 34 | |
| 35 | bool DebugStepper::advance(PxScene* scene, PxReal dt, void* scratchBlock, PxU32 scratchBlockSize) |
| 36 | { |
| 37 | mTimer.getElapsedSeconds(); |
| 38 | |
| 39 | { |
| 40 | PxSceneWriteLock writeLock(*scene); |
| 41 | scene->simulate(mStepSize, NULL, scratchBlock, scratchBlockSize); |
| 42 | } |
| 43 | |
| 44 | return true; |
| 45 | } |
| 46 | |
| 47 | void DebugStepper::wait(PxScene* scene) |
| 48 | { |
nothing calls this directly
no test coverage detected