Page 1 of 1

etTemporalEaseAtKey not working properly

Posted: October 7th, 2015, 7:16 pm
by stib
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?