BEPUphysics.Vehicle.Vehicle.IBeforeNarrowPhaseUpdateable C# (CSharp) Méthode

IBeforeNarrowPhaseUpdateable() private méthode

private IBeforeNarrowPhaseUpdateable ( float dt ) : void
dt float
Résultat void
        void IBeforeNarrowPhaseUpdateable.Update(float dt)
        {
            //After broadphase, test for supports.
            foreach (Wheel wheel in wheels)
            {
                wheel.FindSupport();
            }
            OnInvolvedEntitiesChanged();
        }