BEPUphysics.Vehicle.Vehicle.IEndOfFrameUpdateable C# (CSharp) Method

IEndOfFrameUpdateable() private method

Performs the end-of-frame update component.
private IEndOfFrameUpdateable ( float dt ) : void
dt float Time since last frame in simulation seconds.
return void
        void IEndOfFrameUpdateable.Update(float dt)
        {
            //Graphics should be updated at the end of each frame.
            foreach (Wheel wheel in Wheels)
            {
                wheel.UpdateAtEndOfFrame(dt);
            }
        }