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>2019-05-27 16:02:11 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2019-05-27 17:00:32 +0300
commit4db3916b60da565f11cb73d905458d66d0347c8a (patch)
tree28a70b6eec49815cc1d3ac0b20d577ff624aafaf /source/blender/collada/ArmatureExporter.cpp
parentb6a0027de3a5ee039442f10cf7f9bc1bf3116733 (diff)
refactor collada: rename add_node_transform() to add_joint_transform()
Diffstat (limited to 'source/blender/collada/ArmatureExporter.cpp')
-rw-r--r--source/blender/collada/ArmatureExporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/ArmatureExporter.cpp b/source/blender/collada/ArmatureExporter.cpp
index 1288a5c7768..49d938fc61d 100644
--- a/source/blender/collada/ArmatureExporter.cpp
+++ b/source/blender/collada/ArmatureExporter.cpp
@@ -318,7 +318,7 @@ void ArmatureExporter::add_bone_transform(Object *ob_arm, Bone *bone, COLLADASW:
bc_sanitize_mat(mat, LIMITTED_PRECISION);
}
- TransformWriter::add_node_transform(node, mat, NULL, this->export_settings, has_restmat);
+ TransformWriter::add_joint_transform(node, mat, NULL, this->export_settings, has_restmat);
}
std::string ArmatureExporter::get_controller_id(Object *ob_arm, Object *ob)