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:
authorSukhitha Prabhath Jayathilake <pr.jayathilake@gmail.com>2011-07-27 23:08:18 +0400
committerSukhitha Prabhath Jayathilake <pr.jayathilake@gmail.com>2011-07-27 23:08:18 +0400
commit90b64737f12f749b93e6a609b1b3680938ef6b85 (patch)
tree0bca86959709a5f68d3b92b5c55f006fd41949e7 /source/blender/collada/AnimationExporter.cpp
parent4a32691416a3069e468bee81c862ccb77fce0556 (diff)
Material Diffuse Color animation COLLADA import.
Diffstat (limited to 'source/blender/collada/AnimationExporter.cpp')
-rw-r--r--source/blender/collada/AnimationExporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/AnimationExporter.cpp b/source/blender/collada/AnimationExporter.cpp
index a4ff987d9ea..4c07b8c8b03 100644
--- a/source/blender/collada/AnimationExporter.cpp
+++ b/source/blender/collada/AnimationExporter.cpp
@@ -112,7 +112,7 @@ void AnimationExporter::exportAnimations(Scene *sce)
transformName = extract_transform_name( fcu->rna_path );
if ((!strcmp(transformName, "specular_hardness"))||(!strcmp(transformName, "specular_color"))
- ||(!strcmp(transformName, "diffuse")))
+ ||(!strcmp(transformName, "diffuse_color")))
dae_animation(ob ,fcu, transformName, true, ma );
fcu = fcu->next;
}