mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-06 19:41:51 -04:00
Add micro:bit matrix field block (#1314)
* Add micro:bit matrix field block * Remove debug logs * Remove rowcol menu * Fix lint errors
This commit is contained in:
parent
0810c455c2
commit
06c4e5516f
3 changed files with 90 additions and 111 deletions
src/engine
|
@ -58,6 +58,10 @@ const ArgumentTypeMap = (() => {
|
|||
map[ArgumentType.BOOLEAN] = {
|
||||
check: 'Boolean'
|
||||
};
|
||||
map[ArgumentType.MATRIX] = {
|
||||
shadowType: 'matrix',
|
||||
fieldType: 'MATRIX'
|
||||
};
|
||||
return map;
|
||||
})();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue