Remove logo glow to optimize gif generation (#1894)

* remove glow effect

* adding more config

* added workspace

* pass width to screenshot info

* set max number of frames

* bum pxt
This commit is contained in:
Peli de Halleux
2019-03-20 14:07:32 -07:00
committed by GitHub
parent be617f6100
commit 6489163518
4 changed files with 21 additions and 18 deletions

View File

@ -147,8 +147,8 @@ namespace pxsim {
return Promise.resolve();
}
screenshotAsync(): Promise<ImageData> {
return this.viewHost.screenshotAsync();
screenshotAsync(width?: number): Promise<ImageData> {
return this.viewHost.screenshotAsync(width);
}
}