
Add "Rewind Time Remaining"
When Rewinding, it would be really useful to see how much Rewind Time there is remaining.
Particularly useful when rewinding in quick succession.
Thank you,
Matt
Answer

I actually just realized I had coded this, but forgot to document it.
You can use:
GetComponent<Timeline>().transform.availableRewindDuration
I'll add the online documentation right away.

I'll also add this shortcut for the next version:
GetComponent<Timeline>().availableRewindDuration

Hello again. I am having some trouble here, I am getting a null for GetComponentInParent<Timeline>().transform
I get the correct reference with just GetComponentInParent<Timeline>(), so I'm not entirely sure what I am doing wrong. Any advice is appreciated, thank you :)

Oops, my bad. Your object probably has a rigidbody. Use GetComponent<Timeline>().recorder or GetComponent<Timeline>().rigidbody instead.

Thank you, using rigidbody resolved the issue. I now have Rewind working precisely how I hoped :)
Customer support service by UserEcho
I actually just realized I had coded this, but forgot to document it.
You can use:
I'll add the online documentation right away.