Use the new note picker field in music and EV3 extensions ()

* Add note field type

* Note picker in music extension plays notes

* Use note picker in EV3 beep block
This commit is contained in:
Eric Rosenbaum 2018-11-07 11:50:15 -05:00 committed by GitHub
parent eef1885fad
commit 2cff4159bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 36 additions and 4 deletions
src/engine

View file

@ -68,6 +68,10 @@ const ArgumentTypeMap = (() => {
shadowType: 'matrix',
fieldType: 'MATRIX'
};
map[ArgumentType.NOTE] = {
shadowType: 'note',
fieldType: 'NOTE'
};
return map;
})();