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-31 09:04:12 +0400
committerSukhitha Prabhath Jayathilake <pr.jayathilake@gmail.com>2011-07-31 09:04:12 +0400
commitf3c867c3dbde6919653e7cc712099e48b7508715 (patch)
treef9e0be7e480925aca484f960f66970fec49f91ff /source/blender/collada/AnimationExporter.cpp
parentd3edf274b0d79b37ccde1211f62f3b08c46c1cce (diff)
Camera Clipping animation COLLADA support fix.
Diffstat (limited to 'source/blender/collada/AnimationExporter.cpp')
-rw-r--r--source/blender/collada/AnimationExporter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/collada/AnimationExporter.cpp b/source/blender/collada/AnimationExporter.cpp
index ab2bf591321..2f92d9212a9 100644
--- a/source/blender/collada/AnimationExporter.cpp
+++ b/source/blender/collada/AnimationExporter.cpp
@@ -94,7 +94,7 @@ void AnimationExporter::exportAnimations(Scene *sce)
if ((!strcmp(transformName, "lens"))||
(!strcmp(transformName, "ortho_scale"))||
- (!strcmp(transformName, "clipend"))||(!strcmp(transformName, "clipsta")))
+ (!strcmp(transformName, "clip_end"))||(!strcmp(transformName, "clip_start")))
dae_animation(ob , fcu, transformName, true );
fcu = fcu->next;
}
@@ -836,9 +836,9 @@ void AnimationExporter::exportAnimations(Scene *sce)
tm_type = 7;
else if (!strcmp(name, "ortho_scale"))
tm_type = 8;
- else if (!strcmp(name, "clipend"))
+ else if (!strcmp(name, "clip_end"))
tm_type = 9;
- else if (!strcmp(name, "clipsta"))
+ else if (!strcmp(name, "clip_start"))
tm_type = 10;
else if (!strcmp(name, "specular_hardness"))
tm_type = 11;