mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-16 19:12:03 +02:00
Fix for warning.
This commit is contained in:
parent
8cb5c639fb
commit
40d9fffb7f
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ var hueAngle = 0;
|
|||
var smoothedOffset;
|
||||
|
||||
function step() {
|
||||
if (stateHistory.length == 0) {
|
||||
if (stateHistory.length === 0) {
|
||||
// start at a random position within the bounds, with a random velocity
|
||||
position = randomVector(BOUNDS_MIN, BOUNDS_MAX);
|
||||
do {
|
||||
|
|
Loading…
Reference in a new issue