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-07 22:40:46 +0400
committerSukhitha Prabhath Jayathilake <pr.jayathilake@gmail.com>2011-07-07 22:40:46 +0400
commit6f5b5ac3c921216306972d24fab1a778c561571a (patch)
tree09456cb2b654836555027a19b157c8215db2518b /source/blender/collada
parentbe918954bd71ed801652039c6f4a0c98094bdc77 (diff)
Camera clipend animation export
Diffstat (limited to 'source/blender/collada')
-rw-r--r--source/blender/collada/AnimationExporter.cpp11
-rw-r--r--source/blender/collada/CameraExporter.cpp8
2 files changed, 13 insertions, 6 deletions
diff --git a/source/blender/collada/AnimationExporter.cpp b/source/blender/collada/AnimationExporter.cpp
index 850f1b334f2..311ed290c45 100644
--- a/source/blender/collada/AnimationExporter.cpp
+++ b/source/blender/collada/AnimationExporter.cpp
@@ -91,7 +91,8 @@ void AnimationExporter::exportAnimations(Scene *sce)
transformName = extract_transform_name( fcu->rna_path );
if ((!strcmp(transformName, "lens"))||
- (!strcmp(transformName, "ortho_scale")))
+ (!strcmp(transformName, "ortho_scale"))||
+ (!strcmp(transformName, "clipend")))
dae_animation(ob ,fcu, transformName,true );
fcu = fcu->next;
}
@@ -185,8 +186,9 @@ void AnimationExporter::exportAnimations(Scene *sce)
if (fcu->array_index < 4)
axis_name = axis_names[fcu->array_index];*/
}
+ //maybe a list or a vector of float animations
else if ( !strcmp(transformName, "spot_size")||!strcmp(transformName, "spot_blend")||
- !strcmp(transformName, "lens")||!strcmp(transformName, "ortho_scale"))
+ !strcmp(transformName, "lens")||!strcmp(transformName, "ortho_scale")||!strcmp(transformName, "clipend"))
{
axis_name = "";
}
@@ -807,6 +809,8 @@ void AnimationExporter::exportAnimations(Scene *sce)
tm_type = 7;
else if (!strcmp(name, "ortho_scale"))
tm_type = 8;
+ else if (!strcmp(name, "clipend"))
+ tm_type = 9;
else
tm_type = -1;
}
@@ -838,6 +842,9 @@ void AnimationExporter::exportAnimations(Scene *sce)
case 8:
tm_name = "xmag";
break;
+ case 9:
+ tm_name = "zfar";
+ break;
default:
tm_name = "";
diff --git a/source/blender/collada/CameraExporter.cpp b/source/blender/collada/CameraExporter.cpp
index 1089cd03fde..cc9860723fe 100644
--- a/source/blender/collada/CameraExporter.cpp
+++ b/source/blender/collada/CameraExporter.cpp
@@ -74,8 +74,8 @@ void CamerasExporter::operator()(Object *ob, Scene *sce)
if (cam->type == CAM_PERSP) {
COLLADASW::PerspectiveOptic persp(mSW);
persp.setXFov(lens_to_angle(cam->lens)*(180.0f/M_PI),"xfov");
- persp.setAspectRatio((float)(sce->r.xsch)/(float)(sce->r.ysch),false,cam_name);
- persp.setZFar(cam->clipend);
+ persp.setAspectRatio((float)(sce->r.xsch)/(float)(sce->r.ysch),false,"aspect_ratio");
+ persp.setZFar(cam->clipend, false , "zfar");
persp.setZNear(cam->clipsta);
COLLADASW::Camera ccam(mSW, &persp, cam_id, cam_name);
addCamera(ccam);
@@ -83,8 +83,8 @@ void CamerasExporter::operator()(Object *ob, Scene *sce)
else {
COLLADASW::OrthographicOptic ortho(mSW);
ortho.setXMag(cam->ortho_scale,"xmag");
- ortho.setAspectRatio((float)(sce->r.xsch)/(float)(sce->r.ysch));
- ortho.setZFar(cam->clipend);
+ ortho.setAspectRatio((float)(sce->r.xsch)/(float)(sce->r.ysch),false,"aspect_ratio");
+ ortho.setZFar(cam->clipend , false , "zfar");
ortho.setZNear(cam->clipsta);
COLLADASW::Camera ccam(mSW, &ortho, cam_id, cam_name);
addCamera(ccam);