What does the term “STEP” means in bullet physics?
What does the function stepSimulation() and its parameters mean?
I have read the documentation but i could not get hold of anything.
Any valid explanation would be of great help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
timeStep– time passed after last simulation.Internally simulation is done for some internal constant steps.
fixedTimeStepfixedTimeStep~~~ 0.01666666 = 1/60if
timeStepis 0.1 then it will include 6 (timeStep / fixedTimeStep) internal simulations.To make glider movements BulletPhysics interpolate final step results according reminder after division (
timeStep / fixedTimeStep)