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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-12-02 14:18:29 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-12-02 14:21:12 +0300
commite9de9eed5d91aedded71131118b0252aa078b947 (patch)
tree62da5b5592350d09153606b524a8e5b101e05c88 /io_scene_fbx/data_types.py
parent5e69d4b4e7580ccc26f38062455bca28ec52530c (diff)
Fix T46910: FBX import error due to unrecognized property flags set.
Get rid of those flags asserts in read code, we do not use them anyway, and our goal is not to be a FBX format validator, especially since there is no public FBX format...
Diffstat (limited to 'io_scene_fbx/data_types.py')
-rw-r--r--io_scene_fbx/data_types.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/io_scene_fbx/data_types.py b/io_scene_fbx/data_types.py
index 3a505be8..129806c9 100644
--- a/io_scene_fbx/data_types.py
+++ b/io_scene_fbx/data_types.py
@@ -36,6 +36,10 @@ FLOAT64_ARRAY = b'd'[0]
BOOL_ARRAY = b'b'[0]
BYTE_ARRAY = b'c'[0]
+# Some other misc defines
+# Known combinations so far - supposed meaning: A = animatable, A+ = animated, U = UserProp
+# VALID_NUMBER_FLAGS = {b'A', b'A+', b'AU', b'A+U'} # Not used...
+
# array types - actual length may vary (depending on underlying C implementation)!
import array