forked from abhijitWakchaure/akatsuki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
36 lines (36 loc) · 752 Bytes
/
config.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
const config = {
canvas: {
width: window.innerWidth,
height: window.innerHeight,
margin: 0
},
car: {
width: 175,
height: 37.5,
wheelRadius: 18.75,
maxVelocity: 9,
seats: {
yOffset: 37.5,
w: 43.75,
h: 37.5
},
frontSeat: {
xOffset: -6.25
},
backSeat: {
xOffset: -48.2
}
},
platform: {
yLevel: 3,
xLevel: 3,
height: 20,
xMarginFactor: 0.20,
destinations: ["Bangalore", "Hyderabad", "Chennai", "Mumbai", "Pune", "Kolkata", "Jaipur", "Delhi", "Gangtok"]
},
passenger: {
w: 44,
h: 94
},
debug: false
}