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>2004-12-11 15:41:51 +0300
committerTon Roosendaal <ton@blender.org>2004-12-11 15:41:51 +0300
commit2b614b2be46d0fc788d3183b9c552880d7b6200b (patch)
tree11e9a0a0ed2a1d76fef74d1ad42a2747e8b8f0b3 /source/blender/src/editkey.c
parent974f11379a3f09884c8c873baa3f56fa9cd46102 (diff)
Fixes, after bug report Stefano:
- Dupli-Frames objects didn't render correct with Motion Blur (they moved!) - VertexKey on Bezier paths didn't animate the 'twist' rotation. This did work for Nurbs paths. Plus; removed Nabla slider from Stucci, it doesn't work for that texture.
Diffstat (limited to 'source/blender/src/editkey.c')
-rw-r--r--source/blender/src/editkey.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/src/editkey.c b/source/blender/src/editkey.c
index babf1106287..03e1496c25c 100644
--- a/source/blender/src/editkey.c
+++ b/source/blender/src/editkey.c
@@ -532,6 +532,7 @@ void curve_to_key(Curve *cu, KeyBlock *kb, ListBase *nurb)
fp+= 3;
VECCOPY(fp, bezt->vec[2]);
fp+= 3;
+ fp[0]= bezt->alfa;
fp+= 3; /* alphas */
bezt++;
}
@@ -578,8 +579,9 @@ void key_to_curve(KeyBlock *kb, Curve *cu, ListBase *nurb)
fp+= 3;
VECCOPY(bezt->vec[2], fp);
fp+= 3;
+ bezt->alfa= fp[0];
fp+= 3; /* alphas */
-
+
tot-= 3;
bezt++;
}