Use variable field directly

This commit is contained in:
Paul Kaplan 2017-06-14 16:31:29 -04:00
parent ecf535f4c3
commit 5df4456c4a

View file

@ -1191,9 +1191,8 @@ const specMap = {
opcode: 'data_setvariableto', opcode: 'data_setvariableto',
argMap: [ argMap: [
{ {
type: 'input', type: 'field',
inputOp: 'data_variablemenu', fieldName: 'VARIABLE'
inputName: 'VARIABLE'
}, },
{ {
type: 'input', type: 'input',
@ -1206,9 +1205,8 @@ const specMap = {
opcode: 'data_changevariableby', opcode: 'data_changevariableby',
argMap: [ argMap: [
{ {
type: 'input', type: 'field',
inputOp: 'data_variablemenu', fieldName: 'VARIABLE'
inputName: 'VARIABLE'
}, },
{ {
type: 'input', type: 'input',
@ -1221,9 +1219,8 @@ const specMap = {
opcode: 'data_showvariable', opcode: 'data_showvariable',
argMap: [ argMap: [
{ {
type: 'input', type: 'field',
inputOp: 'data_variablemenu', fieldName: 'VARIABLE'
inputName: 'VARIABLE'
} }
] ]
}, },
@ -1231,9 +1228,8 @@ const specMap = {
opcode: 'data_hidevariable', opcode: 'data_hidevariable',
argMap: [ argMap: [
{ {
type: 'input', type: 'field',
inputOp: 'data_variablemenu', fieldName: 'VARIABLE'
inputName: 'VARIABLE'
} }
] ]
}, },