From b7609f1b49d1ffdc8a7691bd891ce465c18ce055 Mon Sep 17 00:00:00 2001 From: Michael Dawson-Haggerty Date: Thu, 15 Aug 2024 20:30:42 -0400 Subject: [PATCH] revert normalized gltf --- trimesh/exchange/gltf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/trimesh/exchange/gltf.py b/trimesh/exchange/gltf.py index d00406971..6380bd9ae 100644 --- a/trimesh/exchange/gltf.py +++ b/trimesh/exchange/gltf.py @@ -885,6 +885,7 @@ def _append_mesh( buff=buffer_items, blob={ "componentType": 5121, + "normalized": True, "type": "VEC4", "byteOffset": 0, }, @@ -1157,6 +1158,7 @@ def _append_path(path, name, tree, buffer_items): buff=buffer_items, blob={ "componentType": 5121, + "normalized": True, "type": "VEC4", "byteOffset": 0, }, @@ -1227,6 +1229,7 @@ def _append_point(points, name, tree, buffer_items): blob={ "componentType": 5121, "count": vxlist[0], + "normalized": True, "type": kind, "byteOffset": 0, },