Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Broken scripts with update 6 -> 7
#6
Also keep in mind that ChangeLength() in Obi 7 takes a change in length as parameter, instead of an absolute value. So this:

Code:
cursor.ChangeLength(restLength);

should be:

Code:
cursor.ChangeLength(restLength - rope.restLength);

kind regards
Reply


Messages In This Thread
Broken scripts with update 6 -> 7 - by hariedo - 21-12-2024, 10:35 AM
RE: Broken scripts with update 6 -> 7 - by josemendez - Yesterday, 03:30 PM