public static void ConvertSelected()
        {
            if (Selection.activeGameObject == null)
            {
                Debug.Log("Please select the root of the ragdoll that you wish to convert to use ConfigurableJoints.");
                return;
            }

            // @todo undo

            JointConverter.ToConfigurable(Selection.activeGameObject);
        }