Confirm extension in use in sb2 serialization ()

Add a check when serializing sb2 projects to see whether an extension is actually in use in a block or a visible monitor.
This commit is contained in:
Katie Broida 2018-10-17 10:49:08 -04:00 committed by GitHub
parent 17874030e6
commit 899ce56214
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 111 additions and 2 deletions
src/engine

View file

@ -1596,6 +1596,14 @@ class Runtime extends EventEmitter {
return count;
}
/**
*
* @return {OrderedMap} The current state of monitor blocks.
*/
getMonitorState () {
return this._monitorState;
}
/**
* Queue monitor blocks to sequencer to be run.
*/