etTemporalEaseAtKey not working properly

Find out why the . goes before the /

Moderator: Paul Tuersley

Post Reply
stib
Posts: 21
Joined: December 10th, 2006, 10:23 pm
Contact:

This code:

Code: Select all

startSpeed = 10+Math.random()*80;
var easeOut = new KeyframeEase(startSpeed, 100);
var easeIn = new KeyframeEase(4000,0.1);

//create the keyframes and ease them
theEllipse.property("Size").setValueAtTime(startTime,[4440,4440]);
theEllipse.property("Size").setTemporalEaseAtKey(1, [easeIn, easeIn], [easeOut, easeOut]);
should create a key with ease in and ease out, for a 2D property. But: weirdness. When I look at the keys:

Image

there's no ease in, and the ease out has been applied to only one dimension (although the influence has been applied to both). Bug, or am I doing something wrong?
Post Reply