How can I enable scale rewinding?

Updated: 2018-09-06

Scale rewinding is disabled by default to alleviate memory pressure.

You can easily enable it by doing uncommenting a few lines:

// public Vector3 scale;
// scale = Vector3.Lerp(from.scale, to.scale, t),

These lines are found in:

  • Source/Timelines/TransformTimeline.cs, line 15, line 23
  • Source/Timelines/RigidbodyTimeline2D.cs, line 15, line 29
  • Source/Timelines/RigidbodyTimeline3D.cs, line 15, line 28
Was this article helpful?
Be the first to vote!
Yes, helpful
No, not for me