mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-08 23:42:25 +02:00
Up the number.
This commit is contained in:
parent
d174e86347
commit
cecf2fb611
1 changed files with 3 additions and 3 deletions
|
@ -14,8 +14,8 @@ var Vec3, Quat, MyAvatar, Entities, Camera, Script, print;
|
|||
// The _TIMEOUT parameters can be 0 for no activity, and -1 to be active indefinitely.
|
||||
//
|
||||
|
||||
var NUMBER_TO_CREATE = 1; // FIXME 200;
|
||||
var LIFETIME = 30; // FIXME 60; // seconds
|
||||
var NUMBER_TO_CREATE = 100;
|
||||
var LIFETIME = 120; // seconds
|
||||
var EDIT_RATE = 60; // hz
|
||||
var EDIT_TIMEOUT = -1;
|
||||
var MOVE_RATE = 1; // hz
|
||||
|
@ -69,7 +69,7 @@ Script.setInterval(function () {
|
|||
moveRate: MOVE_RATE,
|
||||
editTimeout: EDIT_TIMEOUT,
|
||||
editRate: EDIT_RATE,
|
||||
debug: {flow: true, send: true}
|
||||
debug: {flow: false, send: false, receive: false}
|
||||
});
|
||||
for (i = 0; (i < numToCreate) && (totalCreated < NUMBER_TO_CREATE); i++) {
|
||||
Entities.addEntity({
|
||||
|
|
Loading…
Reference in a new issue