Skip to content

Commit

Permalink
#210 Morph Targets fixed escaping in mesh.primitive.schema.json and m…
Browse files Browse the repository at this point in the history
…esh.primitive.target.schema.json
  • Loading branch information
emiliano committed Feb 25, 2017
1 parent 8dca518 commit c1bb92c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion specification/2.0/schema/mesh.primitive.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"targets" : {
"type" : "array",
"description" : "An array of Morph Targets, each Morph Target is a dictionary mapping attributes (only "POSITION" and "NORMAL" supported) to their deviations in the Morph Target.",
"description" : "An array of Morph Targets, each Morph Target is a dictionary mapping attributes (only \"POSITION\" and \"NORMAL\" supported) to their deviations in the Morph Target.",
"items" : {
"$ref" : "mesh.primitive.target.schema.json"
},
Expand Down
2 changes: 1 addition & 1 deletion specification/2.0/schema/mesh.primitive.target.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"$schema" : "http://json-schema.org/draft-04/schema",
"title" : "target",
"allOf" : [ { "$ref" : "glTFid.schema.json" } ],
"description" : "A dictionary object specifying attributes displacements in a Morph Target, where each key corresponds to one of the two supported attribute semantic ("POSITION" or "NORMAL") and each value is the index of the accessor containing the attribute displacements' data."
"description" : "A dictionary object specifying attributes displacements in a Morph Target, where each key corresponds to one of the two supported attribute semantic (\"POSITION\" or \"NORMAL\") and each value is the index of the accessor containing the attribute displacements' data."
}

0 comments on commit c1bb92c

Please sign in to comment.