mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Actually finish SB2 specMap for WeDo 2.0
Apparently I took a break at the wrong time and forgot to come back to this... :/
This commit is contained in:
parent
51dcfb954d
commit
0ad03f8d70
1 changed files with 14 additions and 13 deletions
|
@ -1424,7 +1424,7 @@ addExtensionOp(weDo2, 'motorOnFor', {
|
|||
argMap: [
|
||||
{
|
||||
type: 'input',
|
||||
inputOp: 'text',
|
||||
inputOp: 'wedo2.menu.motorID',
|
||||
inputName: 'MOTOR_ID'
|
||||
},
|
||||
{
|
||||
|
@ -1440,7 +1440,7 @@ addExtensionOp(weDo2, 'motorOn', {
|
|||
argMap: [
|
||||
{
|
||||
type: 'input',
|
||||
inputOp: 'text',
|
||||
inputOp: 'wedo2.menu.motorID',
|
||||
inputName: 'MOTOR_ID'
|
||||
}
|
||||
]
|
||||
|
@ -1451,7 +1451,7 @@ addExtensionOp(weDo2, 'motorOff', {
|
|||
argMap: [
|
||||
{
|
||||
type: 'input',
|
||||
inputOp: 'text',
|
||||
inputOp: 'wedo2.menu.motorID',
|
||||
inputName: 'MOTOR_ID'
|
||||
}
|
||||
]
|
||||
|
@ -1462,7 +1462,7 @@ addExtensionOp(weDo2, 'startMotorPower', {
|
|||
argMap: [
|
||||
{
|
||||
type: 'input',
|
||||
inputOp: 'text',
|
||||
inputOp: 'wedo2.menu.motorID',
|
||||
inputName: 'MOTOR_ID'
|
||||
},
|
||||
{
|
||||
|
@ -1478,12 +1478,12 @@ addExtensionOp(weDo2, 'setMotorDirection', {
|
|||
argMap: [
|
||||
{
|
||||
type: 'input',
|
||||
inputOp: 'text',
|
||||
inputOp: 'wedo2.menu.motorID',
|
||||
inputName: 'MOTOR_ID'
|
||||
},
|
||||
{
|
||||
type: 'input',
|
||||
inputOp: 'text',
|
||||
inputOp: 'wedo2.menu.motorDirection',
|
||||
inputName: 'DIRECTION'
|
||||
}
|
||||
]
|
||||
|
@ -1521,7 +1521,7 @@ addExtensionOp(weDo2, 'whenDistance', {
|
|||
argMap: [
|
||||
{
|
||||
type: 'input',
|
||||
inputOp: 'text',
|
||||
inputOp: 'wedo2.menu.lessMore',
|
||||
inputName: 'OP'
|
||||
},
|
||||
{
|
||||
|
@ -1537,33 +1537,34 @@ addExtensionOp(weDo2, 'whenTilted', {
|
|||
argMap: [
|
||||
{
|
||||
type: 'input',
|
||||
inputOp: 'text',
|
||||
inputOp: 'wedo2.menu.tiltDirectionAny',
|
||||
inputName: 'DIRECTION'
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
addExtensionOp(weDo2, 'getDistance', {
|
||||
opcode: 'wedo2.motorOn'
|
||||
opcode: 'wedo2.getDistance',
|
||||
argMap: []
|
||||
});
|
||||
|
||||
addExtensionOp(weDo2, 'isTilted', {
|
||||
opcode: 'wedo2.motorOn',
|
||||
opcode: 'wedo2.isTilted',
|
||||
argMap: [
|
||||
{
|
||||
type: 'input',
|
||||
inputOp: 'text',
|
||||
inputOp: 'wedo2.menu.tiltDirectionAny',
|
||||
inputName: 'DIRECTION'
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
addExtensionOp(weDo2, 'getTilt', {
|
||||
opcode: 'getTiltAngle',
|
||||
opcode: 'wedo2.getTiltAngle',
|
||||
argMap: [
|
||||
{
|
||||
type: 'input',
|
||||
inputOp: 'text',
|
||||
inputOp: 'wedo2.menu.tiltDirection',
|
||||
inputName: 'DIRECTION'
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue