Previously, the easeParams array within a Tweens props object, or a multi-object tween, were ignored and it was only used if set on the root Tween object. It will now work correctly set at any depth. Fix #4292

This commit is contained in:
Richard Davey 2020-09-02 22:27:40 +01:00
parent cff035f596
commit cf17dbe7e9

View file

@ -73,7 +73,7 @@ var TweenBuilder = function (parent, config, defaults)
ops.getEnd, ops.getEnd,
ops.getStart, ops.getStart,
ops.getActive, ops.getActive,
GetEaseFunction(GetValue(value, 'ease', ease), easeParams), GetEaseFunction(GetValue(value, 'ease', ease), GetValue(value, 'easeParams', easeParams)),
GetNewValue(value, 'delay', delay), GetNewValue(value, 'delay', delay),
GetNewValue(value, 'duration', duration), GetNewValue(value, 'duration', duration),
GetBoolean(value, 'yoyo', yoyo), GetBoolean(value, 'yoyo', yoyo),