Destroy a sphere collision shape * @param sphereShape A pointer to the sphere collision shape to destroy */
| 287 | * @param sphereShape A pointer to the sphere collision shape to destroy |
| 288 | */ |
| 289 | void PhysicsCommon::destroySphereShape(SphereShape* sphereShape) { |
| 290 | |
| 291 | deleteSphereShape(sphereShape); |
| 292 | |
| 293 | mSphereShapes.remove(sphereShape); |
| 294 | } |
| 295 | |
| 296 | // Delete a sphere collision shape |
| 297 | /** |