Mistake in json2fbx.py #53875

Closed
opened 2018-01-23 23:17:44 +01:00 by Bob Long · 3 comments

Lines 110-113:

        elif dt == "b":
            e.add_byte_array(d)
        elif dt == "c":
            e.add_bool_array(d)

"b" represents a bool array, and "c" represents a byte array. Lines 111 and 113 should be switched.

Lines 110-113: ``` elif dt == "b": e.add_byte_array(d) elif dt == "c": e.add_bool_array(d) ``` "b" represents a bool array, and "c" represents a byte array. Lines 111 and 113 should be switched.
Author

Added subscriber: @robertlong13

Added subscriber: @robertlong13

This issue was referenced by f12892eada

This issue was referenced by f12892eadac836f73593cd9a48c52188c9b32c0c

Changed status from 'Open' to: 'Resolved'

Changed status from 'Open' to: 'Resolved'
Sign in to join this conversation.
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender-addons#53875
No description provided.