Add micro:bit matrix field block ()

* Add micro:bit matrix field block

* Remove debug logs

* Remove rowcol menu

* Fix lint errors
This commit is contained in:
Kreg Hanning 2018-07-11 16:13:49 -04:00 committed by Eric Rosenbaum
parent 0810c455c2
commit 06c4e5516f
3 changed files with 90 additions and 111 deletions
src/engine

View file

@ -58,6 +58,10 @@ const ArgumentTypeMap = (() => {
map[ArgumentType.BOOLEAN] = {
check: 'Boolean'
};
map[ArgumentType.MATRIX] = {
shadowType: 'matrix',
fieldType: 'MATRIX'
};
return map;
})();