Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_scene_fbx/fbx_utils.py')
-rw-r--r--io_scene_fbx/fbx_utils.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/io_scene_fbx/fbx_utils.py b/io_scene_fbx/fbx_utils.py
index f71e89a8..c35399b2 100644
--- a/io_scene_fbx/fbx_utils.py
+++ b/io_scene_fbx/fbx_utils.py
@@ -594,10 +594,12 @@ def _elem_props_flags(animatable, animated, custom):
return b"A+U"
return b"A+"
if custom:
- return b"AU"
+ # Seems that customprops always need those 'flags', see T69554. Go figure...
+ return b"A+U"
return b"A"
if custom:
- return b"U"
+ # Seems that customprops always need those 'flags', see T69554. Go figure...
+ return b"A+U"
return b""