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:
Append { duration: 1, delay: 2 }
Join {duration: 1, delay: 0}
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.
Hello,
You recently changed, in
ee79e77f3ce49d1ac14475b02c88f36210388ba6
, theSetDelay
toAppendInterval
. I understand what you were trying to achieve with the fix, but there is a bug.For example:
Append { duration: 1, delay: 2 }
Join {duration: 1, delay: 0}
When calling the
Join
method thelastTweenInsertTime
will be3
(duration + delay of the append). This means that theJoin
will start after theAppend
instead of at the same time (+ delay). Due to this theJoin
behaves as anAppend
.For the time being I will locally revert this commit in my fork until this problem is solved.