10-08-2022, 05:12 PM
(This post was last modified: 10-08-2022, 05:14 PM by iamthehone.)
Hi there!
I have the same problem as someone here
http://obi.virtualmethodstudio.com/forum...attachment
on Obi 6.4, using Rod.
I've moved the accumulatedTime line to top of the Update, and the rod end still doesn't follow the rigidbody correctly. I've tried with and without interpolation enabled on both obi rod and the rigidbody.
Here is the gif
https://imgur.com/a/EwcaYFQ
I have the same problem as someone here
http://obi.virtualmethodstudio.com/forum...attachment
on Obi 6.4, using Rod.
I've moved the accumulatedTime line to top of the Update, and the rod end still doesn't follow the rigidbody correctly. I've tried with and without interpolation enabled on both obi rod and the rigidbody.
Here is the gif
https://imgur.com/a/EwcaYFQ
Code:
private void Update()
{
accumulatedTime += Time.deltaTime;
ObiProfiler.EnableProfiler();
Interpolate(Time.fixedDeltaTime, accumulatedTime);
ObiProfiler.DisableProfiler();
}