Add missing "normalized" accessor property to glTF document for the 3.2 branch
This commit is contained in:
parent
74512fd876
commit
d96fdcd45e
1 changed files with 4 additions and 0 deletions
|
@ -506,6 +506,10 @@ Error EditorSceneImporterGLTF::_parse_accessors(GLTFState &state) {
|
|||
accessor.byte_offset = d["byteOffset"];
|
||||
}
|
||||
|
||||
if (d.has("normalized")) {
|
||||
accessor.normalized = d["normalized"];
|
||||
}
|
||||
|
||||
if (d.has("max")) {
|
||||
accessor.max = d["max"];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue