How to set physics constraint angular motor strength in code?

Hello, I am attempting to edit the Angular Target Orientation strength in the event graph but I can’t seem to find a function or variable that I can use that edits the value during runtime. Any help is appreciated and an image of what I’m trying to edit is shown below for better clarification:

122755-pic2.png

Hey Oldsiren,

I think you’ll want to look at SetAngularDriveParams located in FConstraintInstance.

/** Set the angular drive's strength parameters*/
	void SetAngularDriveParams(float InSpring, float InDamping, float InForceLimit);

That should allow you to set the strength as detailed in the comment.

Have a great day

Ok, thank you! This helps more than the actual comment for the function in terms of description.