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

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

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