-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCONFIG.json
38 lines (38 loc) · 847 Bytes
/
CONFIG.json
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
{
"general": {
"title": "2D ray casting pygame",
"color": [60, 60, 60],
"logo route": "images/logo.png"
},
"player": {
"radius": 20,
"color": [235, 235, 235],
"x position": 284,
"y position": 284
},
"ray": {
"color": [235, 235, 235],
"width": 2
},
"walls": {
"width": 4,
"color": [0, 0, 0],
"walls": [
[[50, 50], [550, 50]],
[[50, 50], [50, 200]],
[[50, 200], [100, 200]],
[[150, 150], [150, 450]],
[[150, 450], [210, 450]],
[[210, 450], [210, 425]],
[[450, 100], [450, 350]],
[[350, 200], [450, 200]],
[[350, 200], [350, 275]],
[[350, 275], [350, 280]],
[[100, 200], [100, 450]],
[[50, 500], [550, 500]],
[[550, 500], [550, 425]],
[[550, 425], [500, 425]],
[[550, 425], [550, 450]]
]
}
}