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

UpdateDetectorPosition() защищенный абстрактный Метод

Updates the position of the detector before each step.
protected abstract UpdateDetectorPosition ( ) : void
Результат void
        protected internal abstract void UpdateDetectorPosition();

Usage Example

Пример #1
0
        internal void OnAdditionToSpace(ISpace space)
        {
            //Make sure it doesn't collide with anything.

            shape.OnAdditionToSpace(space);
            shape.UpdateDetectorPosition(); //Need to put the detectors in appropriate locations before adding since otherwise overloads the broadphase
            space.Add(shape.detector);
        }
All Usage Examples Of BEPUphysics.Vehicle.WheelShape::UpdateDetectorPosition