mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-01 00:50:24 -04:00
Use the new note picker field in music and EV3 extensions (#1720)
* Add note field type * Note picker in music extension plays notes * Use note picker in EV3 beep block
This commit is contained in:
parent
eef1885fad
commit
2cff4159bb
4 changed files with 36 additions and 4 deletions
src/engine
|
@ -68,6 +68,10 @@ const ArgumentTypeMap = (() => {
|
|||
shadowType: 'matrix',
|
||||
fieldType: 'MATRIX'
|
||||
};
|
||||
map[ArgumentType.NOTE] = {
|
||||
shadowType: 'note',
|
||||
fieldType: 'NOTE'
|
||||
};
|
||||
return map;
|
||||
})();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue