Skip to content
Snippets Groups Projects
Commit f12892ea authored by Campbell Barton's avatar Campbell Barton
Browse files

Fix T53875: json2fbx: error reading type spec

parent 3dc0ceb1
Branches
Tags
No related merge requests found
......@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment