* Removes a collider from this set and wake-up the rigid-body it is attached to. * @param {number} handle * @param {RawIslandManager} islands * @param {RawRigidBodySet} bodies * @param {boolean} wakeUp
(handle, islands, bodies, wakeUp)
| 750 | * @param {boolean} wakeUp |
| 751 | */ |
| 752 | remove(handle, islands, bodies, wakeUp) { |
| 753 | _assertClass(islands, RawIslandManager); |
| 754 | _assertClass(bodies, RawRigidBodySet); |
| 755 | wasm.rawcolliderset_remove(this.__wbg_ptr, handle, islands.__wbg_ptr, bodies.__wbg_ptr, wakeUp); |
| 756 | } |
| 757 | /** |
| 758 | * @param {number} handle |
| 759 | * @returns {boolean} |
nothing calls this directly
no test coverage detected