Skip to content

Instantly share code, notes, and snippets.

@slawo-ch
Created December 13, 2019 16:47
Show Gist options
  • Select an option

  • Save slawo-ch/df46c4f77e90745f37c52bb5f033dcb8 to your computer and use it in GitHub Desktop.

Select an option

Save slawo-ch/df46c4f77e90745f37c52bb5f033dcb8 to your computer and use it in GitHub Desktop.
const moveStars = (distance) => {
const count = stars.length;
for (var i = 0; i < count; i++) {
const s = stars[i];
s.z -= distance;
while (s.z <= 1){
s.z += 1000;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment