Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Problems extending rope
#5
(18-06-2018, 09:37 AM)josemendez Wrote: I can't reproduce the behavior you describe. Ropes can be extended up to the maximum amount of pooled particles. Tried it in the Crane sample scene.

Are you sure the code you're using to call cursor.ChangeLength() isn't somehow limiting the maximum rope length?

It shouldn't be, my code is
Code:
public void Lower()
   {
       cursor.ChangeLength(rope.RestLength + speed * Time.deltaTime);
   }

   public void Raise()
   {
       cursor.ChangeLength(rope.RestLength - speed * Time.deltaTime);
   }
Reply


Messages In This Thread
Problems extending rope - by Butter1484 - 16-06-2018, 02:28 AM
RE: Problems extending rope - by josemendez - 16-06-2018, 11:58 AM
RE: Problems extending rope - by Butter1484 - 17-06-2018, 12:02 AM
RE: Problems extending rope - by josemendez - 18-06-2018, 09:37 AM
RE: Problems extending rope - by Butter1484 - 18-06-2018, 09:09 PM
RE: Problems extending rope - by josemendez - 20-06-2018, 08:04 AM
RE: Problems extending rope - by Butter1484 - 20-06-2018, 09:49 PM
RE: Problems extending rope - by Mouledoux - 31-01-2019, 06:42 PM