From 711cf13e74de6745dc572cf83f59e8c108641941 Mon Sep 17 00:00:00 2001 From: oyongzhi <48530933+oyongzhi@users.noreply.github.com> Date: Wed, 31 Mar 2021 16:21:30 +0100 Subject: [PATCH] To test AR: Reduced joint swing limit Z by 0.01. --- Gems/PhysX/Code/Source/Joint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gems/PhysX/Code/Source/Joint.h b/Gems/PhysX/Code/Source/Joint.h index 5833b0e20f..4bb0c521fb 100644 --- a/Gems/PhysX/Code/Source/Joint.h +++ b/Gems/PhysX/Code/Source/Joint.h @@ -27,7 +27,7 @@ namespace PhysX const char* GetTypeName() override; float m_swingLimitY = 45.0f; ///< Maximum angle in degrees from the Y axis of the joint frame. - float m_swingLimitZ = 45.0f; ///< Maximum angle in degrees from the Z axis of the joint frame. + float m_swingLimitZ = 44.99f; ///< Maximum angle in degrees from the Z axis of the joint frame. float m_twistLimitLower = -45.0f; ///< Lower limit in degrees for rotation about the X axis of the joint frame. float m_twistLimitUpper = 45.0f; ///< Upper limit in degrees for rotation about the X axis of the joint frame. };