Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  [FIXED] Rope Lagging Behind Attachment
#1
Hi, long term Obi user since 3.0. I just got back into it using 6 and I noticed the rope will lag behind its attached rigidbody where it wouldnt in past versions.

Here is the imgur that contains the settings and gif of the rope lagging behind: https://imgur.com/a/DokBjAl

EDIT:
Unity 2020.3.3.0f1 LTS
Obi v6.4

Movement (physics):
Code:
private void FixedUpdate()
{
    Vector3 forcePoint = transform.position + transform.TransformDirection(moveForceOffset);
    Rigidbody.AddForceAtPosition(_targetForce, forcePoint, ForceMode.Force);
}
Reply


Messages In This Thread
[FIXED] Rope Lagging Behind Attachment - by VirtualCucumber - 07-03-2022, 08:06 PM