etTemporalEaseAtKey not working properly
Posted: October 7th, 2015, 7:16 pm
This code:
should create a key with ease in and ease out, for a 2D property. But: weirdness. When I look at the keys:

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?
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]);

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?