From e9cf0a5aa89eea5c66eea207778978d4a7325016 Mon Sep 17 00:00:00 2001 From: Chris Speciale Date: Wed, 10 Jul 2024 08:15:02 -0400 Subject: [PATCH] Juggler: Minor fixes Removal of more remnant Vector artifacts. --- src/starling/animation/Juggler.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/starling/animation/Juggler.hx b/src/starling/animation/Juggler.hx index 9b8ebb91..be2cb51d 100644 --- a/src/starling/animation/Juggler.hx +++ b/src/starling/animation/Juggler.hx @@ -404,7 +404,7 @@ class Juggler implements IAnimatable while (i < numObjects) __objects[currentIndex++] = __objects[i++]; - __objects.length = currentIndex; + __objects.resize(currentIndex); } }