From 00960bad36fc1bff70cefe1704bea7b020ce4b44 Mon Sep 17 00:00:00 2001 From: Ari Vuollet Date: Tue, 30 Jul 2024 20:50:34 +0300 Subject: [PATCH] Remove zero clamping from HingeJointDrive in Editor --- Source/Engine/Physics/Joints/HingeJoint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Physics/Joints/HingeJoint.h b/Source/Engine/Physics/Joints/HingeJoint.h index 860a6544b..21f5026e4 100644 --- a/Source/Engine/Physics/Joints/HingeJoint.h +++ b/Source/Engine/Physics/Joints/HingeJoint.h @@ -38,7 +38,7 @@ API_STRUCT() struct HingeJointDrive /// /// Target velocity of the joint. /// - API_FIELD(Attributes="Limit(0)") float Velocity = 0.0f; + API_FIELD() float Velocity = 0.0f; /// /// Maximum torque the drive is allowed to apply.