AnimatedLayer playing default should be false (#945)

This commit is contained in:
jberg 2019-10-11 20:03:54 -07:00 committed by Jordan Eldredge
parent 3893f76d38
commit 833907e1c2

View file

@ -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);