mirror of
https://github.com/liabru/matter-js.git
synced 2024-12-26 13:49:01 -05:00
appease jshint
This commit is contained in:
parent
7eadea9d33
commit
89140aedf0
2 changed files with 3 additions and 3 deletions
|
@ -1331,7 +1331,7 @@
|
|||
Events.off(_engine, _sceneEvents[i]);
|
||||
|
||||
if (_mouseConstraint.events) {
|
||||
for (var i = 0; i < _sceneEvents.length; i++)
|
||||
for (i = 0; i < _sceneEvents.length; i++)
|
||||
Events.off(_mouseConstraint, _sceneEvents[i]);
|
||||
}
|
||||
|
||||
|
|
|
@ -8,8 +8,8 @@ var Sleeping = {};
|
|||
|
||||
(function() {
|
||||
|
||||
Sleeping._motionWakeThreshold = 0.18,
|
||||
Sleeping._motionSleepThreshold = 0.08,
|
||||
Sleeping._motionWakeThreshold = 0.18;
|
||||
Sleeping._motionSleepThreshold = 0.08;
|
||||
Sleeping._minBias = 0.9;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue