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:
authorArystanbek Dyussenov <arystan.d@gmail.com>2009-06-19 16:46:51 +0400
committerArystanbek Dyussenov <arystan.d@gmail.com>2009-06-19 16:46:51 +0400
commitf6267e2a26cac8c7b30c7b165df1df54e9cec474 (patch)
tree739de7d1db12e746607e677080f8bc3e4125b8d0 /source/blender/blenkernel/BKE_anim.h
parent5d78f56c1fb1208329ba9c40eaff6ee4a8cd59bb (diff)
Moved struct DupliObject to DNA_object_types.h.
Object.create_dupli_list now works ok.
Diffstat (limited to 'source/blender/blenkernel/BKE_anim.h')
-rw-r--r--source/blender/blenkernel/BKE_anim.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/source/blender/blenkernel/BKE_anim.h b/source/blender/blenkernel/BKE_anim.h
index 5ea511738ad..091887a4eb7 100644
--- a/source/blender/blenkernel/BKE_anim.h
+++ b/source/blender/blenkernel/BKE_anim.h
@@ -39,14 +39,7 @@ struct PartEff;
struct Scene;
struct ListBase;
-typedef struct DupliObject {
- struct DupliObject *next, *prev;
- struct Object *ob;
- unsigned int origlay;
- int index, no_draw, type, animated;
- float mat[4][4], omat[4][4];
- float orco[3], uv[2];
-} DupliObject;
+#include "DNA_object_types.h"
void free_path(struct Path *path);
void calc_curvepath(struct Object *ob);