Add tempo property to rendered target

This commit is contained in:
Eric Rosenbaum 2018-02-27 11:48:14 -05:00
parent 1f3c6ac6ad
commit 237616490f

View file

@ -116,6 +116,12 @@ class RenderedTarget extends Target {
* @type {!string} * @type {!string}
*/ */
this.rotationStyle = RenderedTarget.ROTATION_STYLE_ALL_AROUND; this.rotationStyle = RenderedTarget.ROTATION_STYLE_ALL_AROUND;
/**
* Current tempo (used by the music extension)
* @type {number}
*/
this.tempo = 60;
} }
/** /**