mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Merge pull request #44746 from adamscott/fix-accessor-normalized-3.2
[3.2] Add missing "normalized" accessor property to glTF document
This commit is contained in:
@@ -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"];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user