forked from KhronosGroup/glTF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasset.schema.json
33 lines (33 loc) · 1.15 KB
/
asset.schema.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
{
"$schema" : "http://json-schema.org/draft-03/schema",
"title" : "asset",
"type" : "object",
"extends" : { "$ref" : "glTFProperty.schema.json" },
"properties" : {
"copyright" : {
"type" : "string",
"description" : "A copyright message suitable for display to credit the content creator."
},
"generator" : {
"type" : "string",
"description" : "Tool that generated this glTF model. Useful for debugging."
},
"premultipliedAlpha" : {
"type" : "boolean",
"description" : "Specifies if the shaders were generated with premultiplied alpha. WebGL: see getContext() with premultipliedAlpha",
"default" : false
},
"profile" : {
"type" : "string",
"description" : "Specifies the target rendering API and version, e.g., WebGL 1.0.2.",
"default" : "WebGL 1.0.2"
},
"version" : {
"type" : "number",
"description" : "The glTF version.",
"minimum" : 0.0,
"default" : 0.6
}
},
"additionalProperties" : false
}