diff --git a/editor/import/editor_scene_importer_gltf.cpp b/editor/import/editor_scene_importer_gltf.cpp index 679e12e863c5..fcb0325611b4 100644 --- a/editor/import/editor_scene_importer_gltf.cpp +++ b/editor/import/editor_scene_importer_gltf.cpp @@ -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"]; }