示例#1
0
	/// <summary>
	/// Destroy this JelloJoint.
	/// </summary>
	public void Destroy()
	{
		if(bodyA != null)
			bodyA.RemoveJoint(this);
		if(bodyB != null)
			bodyB.RemoveJoint(this);

		destroyed = true;
	}