-
Notifications
You must be signed in to change notification settings - Fork 48
/
examplePipeline.json
56 lines (56 loc) · 1.31 KB
/
examplePipeline.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
{
"input": "./specs/data/TilesetOfTilesets",
"output": "./output/result",
"tilesetStages": [
{
"name": "upgrade",
"description": "Upgrade the input tileset to the latest version"
},
{
"name": "combine",
"description": "Combine all external tilesets into one"
},
{
"name": "_b3dmToGlb",
"description": "Convert B3DM to GLB",
"contentStages": [
{
"name": "b3dmToGlb",
"description": "Convert each B3DM content into GLB"
}
]
},
{
"name": "_optimizeGlb",
"description": "Optimize GLB",
"contentStages": [
{
"name": "optimizeGlb",
"description": "Apply gltf-pipeline to each GLB content, with the given options",
"options": {
"dracoOptions": {
"compressionLevel": 10
}
}
}
]
},
{
"name": "_separateGltf",
"description": "Separate glTF",
"contentStages": [
{
"name": "separateGltf",
"description": "Convert each GLB content into a .gltf file with separate resources"
}
]
},
{
"name": "gzip",
"description": "Compresses each entry with GZIP",
"includedContentTypes": [
"CONTENT_TYPE_GLTF"
]
}
]
}