public static bool IsGrounded(this Rigidbody in_rRigidbody)
        {
            FirstPersonMovement fMovement = in_rRigidbody.GetComponent <FirstPersonMovement>();

            return(fMovement == null ? false : fMovement.GetIsGrounded());
        }