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-15 20:06:48 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-02-15 20:06:48 +0400
commitbd249c3bffed10a7634ed83fcd5cd07729182689 (patch)
treeea39b404674dd2c7973c4d0360ac65ccf161c8e2 /source/blender/makesdna
parent7985ae700cdf01ff2d59b0100538a4dff55d5b85 (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.
Diffstat (limited to 'source/blender/makesdna')
-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 */