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

DoJointMoved() protected method

protected DoJointMoved ( OpenSim.Region.Physics.Manager.PhysicsJoint joint ) : void
joint OpenSim.Region.Physics.Manager.PhysicsJoint
return void
        protected virtual void DoJointMoved(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 (OnJointMoved != null)
            {
                OnJointMoved(joint);
            }
        }