From 7f55da7477d5dc42c620ded92c1237fe7ea611ad Mon Sep 17 00:00:00 2001 From: Bastien Montagne <montagne29@wanadoo.fr> Date: Wed, 5 Aug 2015 14:29:52 +0200 Subject: [PATCH] Fix T45516: Our index generators can produce values below -1, consider all negative indices as 'skip' flags. --- io_scene_fbx/import_fbx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_scene_fbx/import_fbx.py b/io_scene_fbx/import_fbx.py index e667693d6..d685b40ff 100644 --- a/io_scene_fbx/import_fbx.py +++ b/io_scene_fbx/import_fbx.py @@ -710,7 +710,7 @@ def blen_read_geom_array_setattr(generator, blen_data, blen_attr, fbx_data, stri def check_skip(blen_idx, fbx_idx): nonlocal print_error - if fbx_idx == -1: + if fbx_idx < 0: # Negative values mean 'skip'. return True if blen_idx > max_idx: if print_error: -- GitLab