private bool OnMVRNodeDestroy(vrEvent iBaseEvt) { vrObjectEvent e = vrObjectEvent.Cast(iBaseEvt); if (e != null) { if (e.ComesFrom(m_PhysicsConstraint)) { if (e.eventType == (int)VRObjectEventEnum.VRObjectEvent_Destroy) { // Killed in MiddleVR so delete it in C#. m_PhysicsConstraint.Dispose(); } } } return(true); }
private bool OnMVRNodeDestroy(vrEvent iBaseEvt) { vrObjectEvent e = vrObjectEvent.Cast(iBaseEvt); if (e != null) { if (e.ComesFrom(m_RigidBody)) { if (e.eventType == (int)VRObjectEventEnum.VRObjectEvent_Destroy) { // The physics rigid body was killed in MiddleVR so // stop to use it in C#. m_RigidBody = null; // And even stop to use this component. enabled = false; } } } return(true); }