Changed wait time of avatar list query to entity query to update time so avatar positions don't pile up

This commit is contained in:
Eric Levin 2016-02-05 22:13:25 -08:00
parent 6d64da2df7
commit 053f163b92

View file

@ -58,7 +58,7 @@ function update() {
});
//Now wipe list for next query;
avatarPositions = [];
}, 1000);
}, UPDATE_TIME);
handleActiveSoundEntities();
}
@ -204,4 +204,4 @@ function checkForSoundPropertyChanges(currentProps, newProps) {
}
Script.setInterval(update, UPDATE_TIME);
Script.setInterval(update, UPDATE_TIME);