![]() |
Obi Rope How To Get Any Position From Rope - Printable Version +- Obi Official Forum (https://obi.virtualmethodstudio.com/forum) +-- Forum: Obi Users Category (https://obi.virtualmethodstudio.com/forum/forum-1.html) +--- Forum: Obi Rope (https://obi.virtualmethodstudio.com/forum/forum-4.html) +--- Thread: Obi Rope How To Get Any Position From Rope (/thread-3277.html) |
Obi Rope How To Get Any Position From Rope - NorkQ - 16-01-2022 Hi, I have an object like cube and I want to cube follow the rope in real time. The rope is stretching, sagging etc. but cube should be follow given point in rope every time. ![]() An example code to explain what I think: Code: float length = obiRope.CalculateLength(); I hope I could explain. RE: Obi Rope How To Get Any Position From Rope - josemendez - 16-01-2022 Hi! You can use the path’s GetSectionAt() method. This thread will help: http://obi.virtualmethodstudio.com/forum/thread-3243.html RE: Obi Rope How To Get Any Position From Rope - NorkQ - 17-01-2022 Hi, thank you for your answer. This is actually what I want. But obi gives me an error when I use this line. Code: Code: private IEnumerator FlowEffect() RE: Obi Rope How To Get Any Position From Rope - josemendez - 17-01-2022 (17-01-2022, 01:07 AM)NorkQ Wrote: Hi, Hi there, I'm unable to reproduce this. The input mu is clamped between 0 and 1, so any mu value should work fine. -Which Obi version are you using? (asking before there was a bug in this method, fixed in 6.3) - Are you doing any extra rope processing? (particle reordering, constraint reordering, element-based processing?) kind regards, RE: Obi Rope How To Get Any Position From Rope - NorkQ - 17-01-2022 (17-01-2022, 08:15 AM)josemendez Wrote: Hi there, I am using Version 6.3 November 24, 2021. I am not doing extra processing. I just using these components: ![]() RE: Obi Rope How To Get Any Position From Rope - josemendez - 17-01-2022 Still unable to reproduce it, only thing I can think of is that you're calling this method when the rope is not even initialized yet (such as the Awake() or Start() of a separate object, called by Unity before the rope's). If that is the case, simplest workaround is to just wait for the first frame to end before calling this coroutine. For instance: Code: IEnumerator Start() On a side note, your code has a problem: Code: while (mu < obiRope.CalculateLength()) mu is a normalized coordinate, that ranges from 0 (start of the rope) to 1(end of the rope). Comparing it against the rope length (which is expressed in meters) doesn't make much sense. If you want to sweep the entire rope, use while(mu < 1). Sample component that fixes both issues: Code: using System.Collections; RE: Obi Rope How To Get Any Position From Rope - NorkQ - 17-01-2022 (17-01-2022, 08:28 PM)josemendez Wrote: Still unable to reproduce it, only thing I can think of is that you're calling this method when the rope is not even initialized yet (such as the Awake() or Start() of a separate object, called by Unity before the rope's). This is true. I added yield return new WaitForEndOfFrame(); and problem solved. Thank u very much ! |