BEPUphysics.Vehicle.Vehicle.IEndOfTimeStepUpdateable C# (CSharp) Метод

IEndOfTimeStepUpdateable() приватный Метод

Performs the end-of-update update component.
private IEndOfTimeStepUpdateable ( float dt ) : void
dt float Time since last frame in simulation seconds.
Результат void
        void IEndOfTimeStepUpdateable.Update(float dt)
        {
            //Graphics should be updated at the end of each frame.
            foreach (Wheel wheel in Wheels)
            {
                wheel.UpdateAtEndOfUpdate(dt);
            }
        }