-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig.py
More file actions
27 lines (22 loc) · 733 Bytes
/
config.py
File metadata and controls
27 lines (22 loc) · 733 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
# random initizlized if inputFileName = None
inputFileName = "./input.txt"
# output directory for path images and result txt
outputDir = "./outputs/"
# resources - modity if needed
imagePath = {
"hand": "./imgs/start.png",
"flag": "./imgs/destination.png",
"dark": "./imgs/dark.png",
"light": "./imgs/light.png",
"water": "./imgs/water.png",
"fire": "./imgs/fire.png",
"earth": "./imgs/earth.png",
"health": "./imgs/health.png",
"background": "./imgs/background.png"
}
# draw settings
settings = {
"pixels": 60,
"lineWidth": 4,
"lineColor": (150, 150, 150)
}