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:
authorTon Roosendaal <ton@blender.org>2006-07-04 14:19:26 +0400
committerTon Roosendaal <ton@blender.org>2006-07-04 14:19:26 +0400
commit0458c50f63da046d03819450f82048b3ad586e6c (patch)
tree4e43ca9cfef33a4d31c08e21950f691dca3e1c18 /source/blender/blenkernel/BKE_ipo.h
parent518fef7f2965a01fc033a78bd4d6e592158160f0 (diff)
Bug #4597
More Driver fixing... Commit of over week ago to make drivers update correctly on cyclic situations, forgot to fix another driver call... which then got called always with 'current frame' set to zero. Error only happened with animated (Ipos) Object-Object driver relations. Also in this commit: when loading file, lattices with hooks were not updated correctly.
Diffstat (limited to 'source/blender/blenkernel/BKE_ipo.h')
-rw-r--r--source/blender/blenkernel/BKE_ipo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_ipo.h b/source/blender/blenkernel/BKE_ipo.h
index a1fb24ae9b2..7c8c0186397 100644
--- a/source/blender/blenkernel/BKE_ipo.h
+++ b/source/blender/blenkernel/BKE_ipo.h
@@ -95,7 +95,7 @@ void do_ipo(struct Ipo *ipo);
void do_mat_ipo(struct Material *ma);
void do_ob_ipo(struct Object *ob);
void do_seq_ipo(struct Sequence *seq);
-void do_ob_ipodrivers(struct Object *ob, struct Ipo *ipo);
+void do_ob_ipodrivers(struct Object *ob, struct Ipo *ipo, float ctime);
int has_ipo_code(struct Ipo *ipo, int code);
void do_all_data_ipos(void);