mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Resolves #1988: Vernier gdxfor tilt values should be 0 when disconnected.
This commit is contained in:
parent
7ab41d2bd9
commit
8bbdc4e691
1 changed files with 7 additions and 0 deletions
|
@ -775,6 +775,13 @@ class Scratch3GdxForBlocks {
|
|||
}
|
||||
|
||||
getTilt (args) {
|
||||
// When the peripheral is not connected, the acceleration magnitude
|
||||
// is 0 instead of ~9.8, which ends up registering a tilt value; so
|
||||
// we need to return 0 here to prevent returning a tilt value.
|
||||
if (!this._peripheral.isConnected()) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
switch (args.TILT) {
|
||||
case TiltAxisValues.FRONT:
|
||||
return Math.round(this._peripheral.getTiltFrontBack(false));
|
||||
|
|
Loading…
Reference in a new issue