mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Changing EV3 and WeDo2 default and block motor power values after discussion.
This commit is contained in:
parent
e9b0cc768e
commit
6bd79369e4
2 changed files with 3 additions and 3 deletions
|
@ -968,7 +968,7 @@ class Scratch3Ev3Blocks {
|
||||||
},
|
},
|
||||||
POWER: {
|
POWER: {
|
||||||
type: ArgumentType.NUMBER,
|
type: ArgumentType.NUMBER,
|
||||||
defaultValue: 50
|
defaultValue: 100
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -154,7 +154,7 @@ class WeDo2Motor {
|
||||||
* @type {number}
|
* @type {number}
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
this._power = 50;
|
this._power = 100;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Is this motor currently moving?
|
* Is this motor currently moving?
|
||||||
|
@ -941,7 +941,7 @@ class Scratch3WeDo2Blocks {
|
||||||
},
|
},
|
||||||
POWER: {
|
POWER: {
|
||||||
type: ArgumentType.NUMBER,
|
type: ArgumentType.NUMBER,
|
||||||
defaultValue: 50
|
defaultValue: 100
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue