mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Merge pull request #608 from paulkaplan/unshadow-variable-dropdown
Use variable field instead of input shadow
This commit is contained in:
commit
93bac9ad85
1 changed files with 8 additions and 12 deletions
|
@ -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'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue