Skip to content

Commit 92b0522

Browse files
committed
loop is numeric, not boolean.
1 parent 80fc2e9 commit 92b0522

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v3/src/tween/TweenBuilder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ var TweenBuilder = function (manager, config)
249249

250250
tween.totalTargets = targets.length;
251251
tween.useFrames = GetBoolean(config, 'useFrames', false);
252-
tween.loop = GetBoolean(config, 'loop', 0);
252+
tween.loop = GetAdvancedValue(config, 'loop', 0);
253253
tween.loopDelay = GetAdvancedValue(config, 'loopDelay', 0);
254254
tween.completeDelay = GetAdvancedValue(config, 'completeDelay', 0);
255255
tween.paused = GetBoolean(config, 'paused', false);

0 commit comments

Comments
 (0)