Update TweenChainBuilder.js

This commit is contained in:
Richard Davey 2022-09-13 22:53:51 +01:00
parent c05d8d6c6c
commit 3429946b13

View file

@ -36,9 +36,6 @@ var TweenChainBuilder = function (parent, config)
var chain = new TweenChain(parent); var chain = new TweenChain(parent);
// chain.hold = GetValue(config, 'hold', 0);
// chain.yoyo = GetBoolean(config, 'yoyo', false);
chain.startDelay = GetValue(config, 'delay', 0); chain.startDelay = GetValue(config, 'delay', 0);
chain.completeDelay = GetAdvancedValue(config, 'completeDelay', 0); chain.completeDelay = GetAdvancedValue(config, 'completeDelay', 0);
chain.loop = Math.round(GetAdvancedValue(config, 'loop', GetValue(config, 'repeat', 0))); chain.loop = Math.round(GetAdvancedValue(config, 'loop', GetValue(config, 'repeat', 0)));