brunomikoski / Animation-Sequencer

A visual tool that allows you to create animated sequences of tweens and tweak them on editor time.
MIT License
960 stars 116 forks source link

Join behaves as Append #37

Closed JohnDesley closed 2 years ago

JohnDesley commented 2 years ago

Hello,

You recently changed, in ee79e77f3ce49d1ac14475b02c88f36210388ba6, the SetDelay to AppendInterval. I understand what you were trying to achieve with the fix, but there is a bug.

For example:

When calling the Join method the lastTweenInsertTimewill be 3 (duration + delay of the append). This means that the Join will start after the Append instead of at the same time (+ delay). Due to this the Join behaves as an Append.

For the time being I will locally revert this commit in my fork until this problem is solved.

brunomikoski commented 2 years ago

Could you try the last release @JohnDesley , I believe this issue has been fixed on v0.3.3

JohnDesley commented 2 years ago

Seems to be working again! Thanks for the quick fix 👍