mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 22:42:27 -05:00
store ghost state so previews will use last value whenever setup
This commit is contained in:
parent
d0a71dcaf9
commit
89dd4720a4
1 changed files with 6 additions and 0 deletions
|
@ -56,6 +56,12 @@ class Video {
|
||||||
* @type {Drawable}
|
* @type {Drawable}
|
||||||
*/
|
*/
|
||||||
this._drawable = -1;
|
this._drawable = -1;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store the last state of the video transparency ghost effect
|
||||||
|
* @type {number}
|
||||||
|
*/
|
||||||
|
this._ghost = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static get FORMAT_IMAGE_DATA () {
|
static get FORMAT_IMAGE_DATA () {
|
||||||
|
|
Loading…
Reference in a new issue