From f12892eadac836f73593cd9a48c52188c9b32c0c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 24 Jan 2018 09:54:28 +1100 Subject: Fix T53875: json2fbx: error reading type spec --- io_scene_fbx/json2fbx.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io_scene_fbx/json2fbx.py') diff --git a/io_scene_fbx/json2fbx.py b/io_scene_fbx/json2fbx.py index dc4c5bcc..579b45a7 100755 --- a/io_scene_fbx/json2fbx.py +++ b/io_scene_fbx/json2fbx.py @@ -108,9 +108,9 @@ def parse_json_rec(fbx_root, json_node): elif dt == "d": e.add_float64_array(d) elif dt == "b": - e.add_byte_array(d) - elif dt == "c": e.add_bool_array(d) + elif dt == "c": + e.add_byte_array(d) if name == "FBXVersion": assert(data_types == "I") -- cgit v1.2.3