Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
problem with dynamic attachment
#3
(03-04-2023, 03:33 PM)josemendez Wrote: Hi,

Don't force the position of the sphere (this is a basic rule of thumb when dealing with physics in any engine) as that basically bypasses physics simulation and will only work with a static attachment - since it bypasses simulation too.

If you want to drag the sphere in a way consistent with physics, use rigidbody.AddForce to move the sphere towards the mouse cursor. Once the force you apply to the sphere and the one applied by the rope cancel each other out you won't be able to pull further, just like in a real rope.

kind regards,
is there is a way for me to find how much is the force multiplier the rope is adding ? so like i can add the same exact amount of force to the sphere so nothing weirds happens in come cases
Reply


Messages In This Thread
problem with dynamic attachment - by Mickle - 03-04-2023, 02:26 PM
RE: problem with dynamic attachment - by Mickle - 03-04-2023, 09:54 PM