Custom state (e.g. tempo, volume, video related state) should show up in a target that has been 'flattened' via JSON.stringify.

This commit is contained in:
Karishma Chadha 2018-04-06 10:37:09 -04:00
parent 2dbcdc2244
commit 9892dac904

View file

@ -1003,7 +1003,12 @@ class RenderedTarget extends Target {
variables: this.variables,
lists: this.lists,
costumes: costumes,
sounds: this.getSounds()
sounds: this.getSounds(),
tempo: this.tempo,
volume: this.volume,
videoTransparency: this.videoTransparency,
videoState: this.videoState
};
}