From 07a4986be7a99d32ee2f4b9f353cfb56117110fe Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Tue, 26 Jan 2010 05:58:03 +0000 Subject: WIP commit - degree conversions for transform fcurve editing - grabbing a point works fine, but still issues with grabbing a single handle. Using the Radians unit setting still goes fine though so you can use that for now. --- source/blender/editors/transform/transform_generics.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/transform/transform_generics.c') diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index 3a6f30244ec..1e3bddc769e 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -408,17 +408,21 @@ void recalcData(TransInfo *t) for (ale= anim_data.first; ale; ale= ale->next) { FCurve *fcu= (FCurve *)ale->key_data; + ANIM_unit_mapping_apply_fcurve(ac.scene, ale->id, ale->key_data, 1, 0); + + /* watch it: if the time is wrong: do not correct handles yet */ if (test_time_fcurve(fcu)) dosort++; else calchandles_fcurve(fcu); - + /* set refresh tags for objects using this animation, * BUT only if realtime updates are enabled */ if ((sipo->flag & SIPO_NOREALTIMEUPDATES) == 0) ANIM_list_elem_update(t->scene, ale); + } /* do resort and other updates? */ -- cgit v1.2.3