-
Notifications
You must be signed in to change notification settings - Fork 34
/
update_explain_layers.sh
executable file
·55 lines (44 loc) · 1.81 KB
/
update_explain_layers.sh
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
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
ARGS="--template explain-layers/template.svg"
DDNET_DIR="../ddnet"
OUT_DIR="www/explain"
./explain-layers/update_explain_layers.py $ARGS \
--explain explain-layers/tiles.csv \
--layer-image "${DDNET_DIR}/data/editor/entities_clear/ddnet.png" \
--output "${OUT_DIR}/entities.svg"
./explain-layers/update_explain_layers.py $ARGS \
--explain explain-layers/tiles.csv \
--layer-image "${DDNET_DIR}/data/assets/entities/comfort/ddnet.png" \
--output "${OUT_DIR}/entities-comfort.svg"
./explain-layers/update_explain_layers.py $ARGS \
--explain explain-layers/tiles.csv \
--layer-image "${DDNET_DIR}/data/editor/entities/DDNet.png" \
--output "${OUT_DIR}/game.svg"
./explain-layers/update_explain_layers.py $ARGS \
--explain explain-layers/tiles.csv \
--layer-image "${DDNET_DIR}/data/editor/front.png" \
--output "${OUT_DIR}/front.svg"
./explain-layers/update_explain_layers.py $ARGS \
--explain explain-layers/tiles.csv \
--layer-image "${DDNET_DIR}/data/editor/tele.png" \
--output "${OUT_DIR}/tele.svg"
./explain-layers/update_explain_layers.py $ARGS \
--explain explain-layers/tiles.csv \
--layer-image "${DDNET_DIR}/data/editor/speedup.png"\
--output "${OUT_DIR}/speedup.svg"
./explain-layers/update_explain_layers.py $ARGS \
--explain explain-layers/tiles.csv \
--explain-override explain-layers/switch.csv \
--layer-image "${DDNET_DIR}/data/editor/switch.png" \
--output "${OUT_DIR}/switch.svg"
./explain-layers/update_explain_layers.py $ARGS \
--explain explain-layers/tiles.csv \
--layer-image "${DDNET_DIR}/data/editor/tune.png"\
--output "${OUT_DIR}/tune.svg"
./explain-layers/update_explain_game.py $ARGS \
--explain explain-layers/game.csv \
--template explain-layers/template.svg \
--layer-image "${DDNET_DIR}/data/game.png" \
--height 1024 \
--height 512 \
--output "${OUT_DIR}/game-png.svg"