mirror of
https://github.com/godotengine/godot.git
synced 2025-01-06 17:37:18 +08:00
Add missing "normalized" accessor property to glTF document for the 3.2 branch
This commit is contained in:
parent
74512fd876
commit
d96fdcd45e
@ -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 New Issue
Block a user