diff --git a/modern/src/runtime/AnimatedLayer.ts b/modern/src/runtime/AnimatedLayer.ts index f590d44f..06aa9521 100644 --- a/modern/src/runtime/AnimatedLayer.ts +++ b/modern/src/runtime/AnimatedLayer.ts @@ -63,7 +63,7 @@ class AnimatedLayer extends Layer { this._typedAttributes = this.attributes; const { autoplay, autoreplay, start, speed } = this._typedAttributes; - this._playing = getBoolean(autoplay, true); + this._playing = getBoolean(autoplay, false); this._autoReplay = getBoolean(autoreplay, true); this._frameNum = getNumber(start, 0); this._start = getNumber(start, 0);