30-08-2022, 09:10 PM
(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