-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsnakeTrack.js
44 lines (44 loc) · 926 Bytes
/
snakeTrack.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
var SNAKE_TRACK = [
{
from: {x:-3200, z:-3000},
to: {x:-3200, z:0},
duration: 10000,
startTime: 0
},
{
from: {x:-3200, z:0},
to: {x: 3200, z:120},
duration: 20000,
startTime: 10000
},
{
from: {x:3200, z:120},
to: {x: 3200, z:1000},
duration: 3000,
startTime: 30000
},
{
from: {x:3200, z:1000},
to: {x: -1000, z:1000},
duration: 15000,
startTime: 33000
},
{
from: {x:-1000, z:1000},
to: {x: -1000, z:0},
duration: 6000,
startTime: 48000
},
{
from: {x:-1000, z:0},
to: {x: 1000, z:0},
duration: 9000,
startTime: 54000
},
{
from: {x:2400, z:0},
to: {x: 3900, z:500},
duration: 9000,
startTime: 69000
}
];