Option of switching between pen trails and stage image has been implemented

Stage saves pen trails too
pull/3/merge
Viraj Mahesh 2014-03-11 02:38:11 -07:00
rodzic 0795c1f44c
commit a7a1b54244
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -3717,11 +3717,11 @@ SpriteMorph.prototype.doScreenshot = function (imgSource, data) {
this.screenshotNames[data] = 0;
}
if (imgSource[0] === "pen trails") {
canvas = stage.penTrails();
canvas = stage.trailsCanvas;
} else if (imgSource[0] === "stage image") {
canvas = stage.fullImageClassic();
}
costume = new Costume(canvas, data);
costume = new Costume(canvas, data).copy();
this.addCostume(costume);
};