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 21:43:32 +0400
committerSukhitha Prabhath Jayathilake <pr.jayathilake@gmail.com>2011-07-27 21:43:32 +0400
commit41216990dc1e8807661c267a361d4ce02724839f (patch)
treec3d7141238c53ac25b9cff0c9c910fb5c56ead3c /source/blender/collada/AnimationImporter.h
parent5fc54a7ccc47b865f77c667d45d4f3c7aab16eaf (diff)
Material Specular Color Animation import.
Diffstat (limited to 'source/blender/collada/AnimationImporter.h')
-rw-r--r--source/blender/collada/AnimationImporter.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/source/blender/collada/AnimationImporter.h b/source/blender/collada/AnimationImporter.h
index b27fba18954..a274d0ebb01 100644
--- a/source/blender/collada/AnimationImporter.h
+++ b/source/blender/collada/AnimationImporter.h
@@ -108,7 +108,8 @@ private:
enum matAnim
{
- MATERIAL_SHININESS = 2
+ MATERIAL_SHININESS = 2,
+ MATERIAL_SPEC_COLOR = 4
};
enum AnimationType
@@ -153,9 +154,7 @@ public:
const COLLADAFW::AnimationList::AnimationBinding * binding,
std::vector<FCurve*>* curves, bool is_joint, char * joint_path);
- void Assign_color_animations(const COLLADAFW::AnimationList::AnimationBinding * binding,
- std::vector<FCurve*>* curves);
-
+ void Assign_color_animations(const COLLADAFW::UniqueId& listid, ListBase *AnimCurves ,char * anim_type);
void Assign_float_animations(const COLLADAFW::UniqueId& listid, ListBase *AnimCurves, char * anim_type);
int setAnimType ( const COLLADAFW::Animatable * prop , int type, int addition);