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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2014-11-29 15:24:26 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2014-12-01 14:08:26 +0300
commit8d42c2f3ea4b37c6a538b2b01e4d00f98ca96100 (patch)
tree9bc903c5cd605b22892256cb33167f6c2e24a7f8 /source/blender/collada/ImportSettings.h
parente240bd39320101e44b6b7e714d46c9272f0f9613 (diff)
Improved Collada Armature Import
Collada does not support Bone length. It has only Joints. This patch tries to improve the necessary "guesswork" for importing Rigs. Differential Revision: https://developer.blender.org/D920
Diffstat (limited to 'source/blender/collada/ImportSettings.h')
-rw-r--r--source/blender/collada/ImportSettings.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/collada/ImportSettings.h b/source/blender/collada/ImportSettings.h
index 3f3a9fb354e..f2185b13c50 100644
--- a/source/blender/collada/ImportSettings.h
+++ b/source/blender/collada/ImportSettings.h
@@ -32,7 +32,8 @@
struct ImportSettings {
public:
bool import_units;
-
+ bool find_chains;
+ int min_chain_length;
char *filepath;
};