mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 06:30:38 +00:00
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:
parent
cff035f596
commit
cf17dbe7e9
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||||
|
|
Loading…
Reference in a new issue