Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix frozen animation reset #20693

Merged
merged 2 commits into from
Feb 17, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion apps/src/turtle/turtle.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,10 @@ class Visualization {
this.ctxDisplay = this.displayCanvas.getContext('2d');
}

resetTurtleFrame() {
this.turtleFrame_ = 0;
}

// Helper for creating canvas elements.
createCanvas_(id, width, height) {
var el = document.createElement('canvas');
Expand Down Expand Up @@ -1078,6 +1082,7 @@ Artist.prototype.reset = function (ignore) {
this.level.startDirection : DEFAULT_DIRECTION;
this.visualization.penDownValue = true;
this.visualization.avatar.visible = true;
this.visualization.resetTurtleFrame();

// For special cases, use a different initial location.
if (this.level.initialX !== undefined) {
Expand Down Expand Up @@ -1127,7 +1132,6 @@ Artist.prototype.reset = function (ignore) {

// Stop the looping sound.
this.studioApp_.stopLoopingAudio('start');

this.resetStepInfo_();
};

Expand Down