forked from KhronosGroup/glTF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.AGI_articulations.schema.json
21 lines (21 loc) · 1.09 KB
/
node.AGI_articulations.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "AGI_articulations glTF Node extension",
"type": "object",
"description": "glTF Extension for an individual node in a glTF model, to associate it with the model's root AGI_articulations object.",
"allOf": [ { "$ref": "glTFProperty.schema.json" } ],
"properties": {
"isAttachPoint": {
"type": "boolean",
"description": "Set to true to indicate that this node's origin and orientation act as an attach point for external objects, analysis, or effects."
},
"articulationName": {
"type": "string",
"pattern": "^[^\\s]+$",
"description": "The name of an Articulation that applies to this node.",
"gltf_detailedDescription": "The name of an Articulation that applies to this node. Articulations are defined in the glTF root extension. A single articulation may apply to more than one node, and its stage values set the transform for all assigned nodes simultaneously."
},
"extensions": { },
"extras": { }
}
}