OpenSim.Region.Physics.Manager.PhysicsScene.DoJointDeactivated C# (CSharp) Method

DoJointDeactivated() protected method

protected DoJointDeactivated ( OpenSim.Region.Physics.Manager.PhysicsJoint joint ) : void
joint OpenSim.Region.Physics.Manager.PhysicsJoint
return void
        protected virtual void DoJointDeactivated(PhysicsJoint joint)
        {
            // We need this to allow subclasses (but not other classes) to invoke the event; C# does
            // not allow subclasses to invoke the parent class event.
            if (OnJointDeactivated != null)
            {
                OnJointDeactivated(joint);
            }
        }