---------------------------------------------------------------------------- Check collisions with trigger and items Perform a container search using the current bounding box of the main body, wheels are not included. This method should only be called on the server. */
| 1480 | only be called on the server. |
| 1481 | */ |
| 1482 | void RigidShape::checkTriggers() |
| 1483 | { |
| 1484 | Box3F bbox = mConvex.getBoundingBox(getTransform(), getScale()); |
| 1485 | gServerContainer.findObjects(bbox,sTriggerMask,findCallback,this); |
| 1486 | } |
| 1487 | |
| 1488 | /** The callback used in by the checkTriggers() method. |
| 1489 | The checkTriggers method uses a container search which will |
nothing calls this directly
no test coverage detected