Yesterday, 03:30 PM
Also keep in mind that ChangeLength() in Obi 7 takes a change in length as parameter, instead of an absolute value. So this:
should be:
kind regards
Code:
cursor.ChangeLength(restLength);
should be:
Code:
cursor.ChangeLength(restLength - rope.restLength);
kind regards