-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.json
62 lines (61 loc) · 1.32 KB
/
config.example.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
{
"debug": false,
"source": {
"path": "PATH TO YOUR PANO IMAGE"
},
"target": "./build",
"preview": {
"cubemap": {
"enabled": true,
"edge": 200,
"target": "preview_cube.jpg"
},
"equirectangular": {
"enabled": true,
"edge": 800,
"target": "preview_equirectangular.jpg"
},
"scaled": {
"enabled": true,
"edge": 800,
"target": "preview_scaled.jpg"
}
},
"cubemap": {
"tiles": {
"enabled": true,
"tileEdge": 512,
"target": "{{levelCount}}/{{faceNameShortLowerCase}}{{xIndex}}_{{yIndex}}.png"
},
"faces": {
"enabled": false,
"target": "{{faceNameLowerCase}}_{{levelCount}}.png"
}
},
"viewer": {
"pannellum": {
"enabled": true,
"target": "index.p.html",
"js": [
"https://cdn.jsdelivr.net/npm/pannellum@2.5.6/build/pannellum.js"
],
"css": [
"https://cdn.jsdelivr.net/npm/pannellum@2.5.6/build/pannellum.css"
]
},
"marzipano": {
"enabled": true,
"target": "index.m.html",
"js": [
"https://cdn.jsdelivr.net/npm/marzipano@0.10.2/dist/marzipano.min.js"
],
"css": [
"https://www.marzipano.net/demos/sample-tour/style.css"
]
}
},
"archive": {
"enabled": true,
"target": "pano.zip"
}
}