mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -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: {
|
||||
type: ArgumentType.NUMBER,
|
||||
defaultValue: 50
|
||||
defaultValue: 100
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -154,7 +154,7 @@ class WeDo2Motor {
|
|||
* @type {number}
|
||||
* @private
|
||||
*/
|
||||
this._power = 50;
|
||||
this._power = 100;
|
||||
|
||||
/**
|
||||
* Is this motor currently moving?
|
||||
|
@ -941,7 +941,7 @@ class Scratch3WeDo2Blocks {
|
|||
},
|
||||
POWER: {
|
||||
type: ArgumentType.NUMBER,
|
||||
defaultValue: 50
|
||||
defaultValue: 100
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue