Increase delay in kicking off physics

This commit is contained in:
David Rowe 2017-10-07 11:50:31 +13:00
parent 105457b388
commit 3fbaf250a4
2 changed files with 2 additions and 2 deletions

View file

@ -66,7 +66,7 @@ History = (function () {
function kickPhysics(entityID) {
// Gives entities a small kick to start off physics, if necessary.
var KICK_DELAY = 500; // ms
var KICK_DELAY = 750; // ms
// Give physics a chance to catch up. Avoids some erratic behavior.
Script.setTimeout(function () {

View file

@ -234,7 +234,7 @@ SelectionManager = function (side) {
function kickPhysics(entityID) {
// Gives entities a small kick to start off physics, if necessary.
var KICK_DELAY = 500; // ms
var KICK_DELAY = 750; // ms
// Give physics a chance to catch up. Avoids some erratic behavior.
Script.setTimeout(function () {