|
|
@ -307,7 +307,9 @@ function newShootingStar() { |
|
|
|
// let nextIn = 10;
|
|
|
|
// let nextIn = 10;
|
|
|
|
let nextIn = 7000 + Math.floor(Math.random() * 5000); |
|
|
|
let nextIn = 7000 + Math.floor(Math.random() * 5000); |
|
|
|
if (areStarsShooting) { |
|
|
|
if (areStarsShooting) { |
|
|
|
setTimeout('newShootingStar()', nextIn); |
|
|
|
setTimeout(() => { |
|
|
|
|
|
|
|
newShootingStar(); |
|
|
|
|
|
|
|
}, nextIn); |
|
|
|
} |
|
|
|
} |
|
|
|
}, duration); |
|
|
|
}, duration); |
|
|
|
// setTimeout('newShootingStar()', duration + nextIn);
|
|
|
|
// setTimeout('newShootingStar()', duration + nextIn);
|
|
|
|