-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig2.json
More file actions
37 lines (37 loc) · 927 Bytes
/
config2.json
File metadata and controls
37 lines (37 loc) · 927 Bytes
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
{
"port" : 80,
"debug" : 10,
"auto" : true,
"airport" : {
"scale" : 2,
"height" : 500,
"width": 500,
"desksize" : 10,
"slidesize" : 10,
"bags" : [
{ "id":22, "dest":17 },
{ "id":31, "dest":18 },
{ "id":1, "dest":17 },
{ "id":15, "dest":19 }
],
"wagons" : [
{ "speed":3.14, "bags":1, "x":165, "y":45 },
{ "speed":15, "bags":0, "x":165, "y":45 },
{ "speed":0, "bags":0, "x":165, "y":45 },
{ "speed":200, "bags":2, "x":165, "y":45 }
],
"nodes" : [
{ "x":50,"y":75,"type":"desk" },
{ "x":150,"y":75,"type":"branch" },
{ "x":180,"y":50,"type":"slide" },
{ "x":180,"y":75,"type":"parking" },
{ "x":180,"y":100,"type":"slide" }
],
"rails" : [
{ "points":[0,1] },
{ "points":[1,2] },
{ "points":[1,3] },
{ "points":[1,4] }
]
}
}