From 9cf030851752e7b35319f81de324926705113a38 Mon Sep 17 00:00:00 2001 From: jfboeve Date: Mon, 29 Sep 2025 10:41:15 +0200 Subject: [PATCH] removed repeatDelay prop since it does not do anything --- src/core/animations/CoreAnimation.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/animations/CoreAnimation.ts b/src/core/animations/CoreAnimation.ts index d68984ed..1a9dc90c 100644 --- a/src/core/animations/CoreAnimation.ts +++ b/src/core/animations/CoreAnimation.ts @@ -28,7 +28,6 @@ export interface AnimationSettings { easing: string | TimingFunction; loop: boolean; repeat: number; - repeatDelay: number; stopMethod: 'reverse' | 'reset' | false; } @@ -89,7 +88,6 @@ export class CoreAnimation extends EventEmitter { easing, loop: settings.loop ?? false, repeat: settings.repeat ?? 0, - repeatDelay: settings.repeatDelay ?? 0, stopMethod: settings.stopMethod ?? false, }; this.timingFunction =