Created
December 13, 2019 16:47
-
-
Save slawo-ch/df46c4f77e90745f37c52bb5f033dcb8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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