Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Independent Timescale
#3
Thanks for the quick reply! I've switched to using LateUpdate and I do:

Code:
smoothDelta = Mathf.Lerp(Time.unscaledDeltaTime,smoothDelta,0.95f);

instead of

Code:
smoothDelta = Mathf.Lerp(Time.deltaTime,smoothDelta,0.95f);

It would be fantastic if we could set this via the inspector in the future so we could update to new versions of Obi Rope without clobbering this fix.
Reply


Messages In This Thread
Independent Timescale - by momothemonster - 07-08-2017, 08:27 PM
RE: Independent Timescale - by josemendez - 07-08-2017, 08:51 PM
RE: Independent Timescale - by momothemonster - 07-08-2017, 09:41 PM