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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-02-17 12:13:45 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-02-17 12:13:45 +0400
commit9d0b7b168fdd69108f095cefed6c3feb0e327ea2 (patch)
tree7035547fe2c14ec11a3458b3b300bb6aeaa2ba49 /source/blender/makesdna/DNA_movieclip_types.h
parent5fd24dc3f2f4ad440a7032325fad999b32726c4e (diff)
Camera tracking: animation datablock for MovieClip
Added AnimData block to MovieClip datablock which allows to animate different properties in clip. Currently supports animation of stabilization influence only. -- svn merge -r44129:44130 ^/branches/soc-2011-tomato
Diffstat (limited to 'source/blender/makesdna/DNA_movieclip_types.h')
-rw-r--r--source/blender/makesdna/DNA_movieclip_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_movieclip_types.h b/source/blender/makesdna/DNA_movieclip_types.h
index 80728cd9817..71029293d09 100644
--- a/source/blender/makesdna/DNA_movieclip_types.h
+++ b/source/blender/makesdna/DNA_movieclip_types.h
@@ -39,6 +39,7 @@
#include "DNA_tracking_types.h"
struct anim;
+struct AnimData;
struct bGPdata;
struct ImBuf;
struct MovieClipProxy;
@@ -61,6 +62,7 @@ typedef struct MovieClipProxy {
typedef struct MovieClip {
ID id;
+ struct AnimData *adt; /* animation data (must be immediately after id for utilities to use it) */
char name[1024]; /* file path, 1024 = FILE_MAX */