mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
Increase delay in kicking off physics
This commit is contained in:
parent
105457b388
commit
3fbaf250a4
2 changed files with 2 additions and 2 deletions
|
@ -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 () {
|
||||
|
|
|
@ -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 () {
|
||||
|
|
Loading…
Reference in a new issue