/** * This supports body activation/deactivation. */ public void DestroyProxy(IBroadPhase broadPhase) { if (m_proxy == null) { return; } // Destroy proxy in the broad-phase. broadPhase.DestroyProxy(m_proxy); m_proxy = null; }