Fix #104672: FBX Byte type unsupported
commit7e23ad68e914e56042abeeb84ff27b83ecb7df18
authorThomas Barlow <github@mysterymayhem.co.uk>
Thu, 8 Jun 2023 21:12:47 +0000 (8 22:12 +0100)
committerGitea <gitea@fake.local>
Fri, 9 Jun 2023 12:36:31 +0000 (9 14:36 +0200)
tree7910c4174de174cbc008031dba1e38b634fc9f90
parente69bed15cd9f2955adbd9a64abcf6fe0e27259c8
Fix #104672: FBX Byte type unsupported

The Byte type "Z" was missing from the supported FBX types, which
would result in an error attempting to parse an FBX containing Byte
properties during import or conversion with fbx2json.

The new variables for the Byte type refer to it as "int8", to reduce the
chance of mixing it up with the existing "bytes" attributes and
functions.

The importer and exporter neither read nor write any Byte properties, so
no changes are made to import or export.

Pull Request: https://projects.blender.org/blender/blender-addons/pulls/104681
io_scene_fbx/data_types.py
io_scene_fbx/encode_bin.py
io_scene_fbx/fbx2json.py
io_scene_fbx/fbx_utils.py
io_scene_fbx/json2fbx.py
io_scene_fbx/parse_fbx.py