Skip to content

Commit a4e22ad

Browse files
committed
Fixed an issue with MCs not playing when reset.
Signed-off-by: Grant Skinner <info@gskinner.com>
1 parent 36d35b1 commit a4e22ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/easeljs/display/MovieClip.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,8 @@ this.createjs = this.createjs||{};
499499
**/
500500
p._reset = function() {
501501
this._prevPos = -1;
502-
this._t = 0;
503-
this.currentFrame = 0;
502+
this._t = this.currentFrame = 0;
503+
this.paused = false;
504504
};
505505

506506
/**

0 commit comments

Comments
 (0)