소스 검색

test: refine physics timestep.

legacy
Sam Hocevar sam 12 년 전
부모
커밋
f3b61c9616
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      test/BtPhysTest.cpp

+ 3
- 1
test/BtPhysTest.cpp 파일 보기

@@ -208,7 +208,9 @@ void BtPhysTest::TickGame(float seconds)
///step the simulation
if (m_bt_world)
{
m_bt_world->stepSimulation(seconds);
int steps = (int)(seconds / 0.005f);
for (int i = 0; i < steps; i++)
m_bt_world->stepSimulation(seconds / steps);
//optional but useful: debug drawing
//m_bt_world->debugDrawWorld();
}


불러오는 중...
취소
저장