Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Trouble using FinalIK with Obi Bone
#4
(30-08-2022, 07:26 AM)josemendez Wrote: Hi!

If memory serves me well, FinalIK is updated in LateUpdate() by default. So updating Obi in LateUpdate too will not work, since the order in which Unity calls LateUpdate for different objects is undefined: it might work sometimes, might not work other times.

Best solution is probably to manually update FinalIK in one of Obi's solver callbacks, OnBeginStep should work:
http://obi.virtualmethodstudio.com/manua...olver.html

That did it, thanks Sonrisa
Reply


Messages In This Thread
Trouble using FinalIK with Obi Bone - by threex3 - 29-08-2022, 06:03 PM
RE: Trouble using FinalIK with Obi Bone - by threex3 - 30-08-2022, 09:10 PM