mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 18:58:20 +02:00
Changed MIN_TIME_INTERVAL to be in milliseconds
This commit is contained in:
parent
053f163b92
commit
0932df621a
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ var DEFAULT_SOUND_DATA = {
|
||||||
interval: -1, // An interval of -1 means this sound only plays once (if it's non-looping) (In seconds)
|
interval: -1, // An interval of -1 means this sound only plays once (if it's non-looping) (In seconds)
|
||||||
intervalSpread: 0 // amount of randomness to add to the interval
|
intervalSpread: 0 // amount of randomness to add to the interval
|
||||||
};
|
};
|
||||||
var MIN_PLAY_INTERVAL = 0.2;
|
var MIN_PLAY_INTERVAL = 200;
|
||||||
|
|
||||||
var UPDATE_TIME = 100;
|
var UPDATE_TIME = 100;
|
||||||
var EXPIRATION_TIME = 5000;
|
var EXPIRATION_TIME = 5000;
|
||||||
|
|
Loading…
Reference in a new issue