-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.config.json
68 lines (68 loc) · 1.1 KB
/
example.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"server": {
"secure": false,
"secureKey": "",
"secureCert": "",
"webPort": 80,
"webSocketPort": 8666,
"autoSave": 3600000,
"paintRefill": 333,
"status": 10000000
},
"imageName": "wall.png",
"width": 1800,
"height": 1200,
"webServer": "http://localhost",
"wsServer": "ws://localhost:8666",
"doubleClick": 200,
"paintVolume": 10000,
"paintTime": 10000,
"defAlpha": 0.75,
"minBrushSize": 1,
"maxBrushSize": 50,
"defBrushSize": 3,
"defaultColors": [
"#000000",
"#444444",
"#888888",
"#cccccc",
"#ffffff",
"#ffcccc",
"#ff8888",
"#cc4444",
"#ff0000",
"#ff8800",
"#ffd700",
"#ffff00",
"#bbff00",
"#00ff00",
"#00cc00",
"#0044cc",
"#0088ff",
"#00ffff",
"#0088ff",
"#0000ff",
"#8800ff",
"#ff00ff",
"#ff0088"
],
"defRole": 0,
"roles": [
{
"id": 0,
"infinitePaint": false,
"mode": 1
},
{
"id": 1,
"infinitePaint": true,
"mode": 1
},
{
"id": 2,
"infinitePaint": false,
"mode": 0
}
],
"mode": 1
}