UpdateDetectorPosition() protected abstract method

Updates the position of the detector before each step.
protected abstract UpdateDetectorPosition ( ) : void
return void
Exemplo n.º 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);
        }
Exemplo n.º 2
0
 internal void UpdateDuringForces(float dt)
 {
     suspension.ComputeWorldSpaceData();
     shape.UpdateDetectorPosition();
 }