KeyframeProperty
methodKapi.KeyframeProperty()
Represents an individual component of a Kapi.Actor
's keyframe state. In many cases you won't need to deal with this directly, Kapi.Actor
abstracts a lot of what this Object does away for you.
Kapi.KeyframeProperty = function (
ownerActor, millisecond, name, value, opt_easing) {
this.id = _.uniqueId('keyframeProperty_');
this.ownerActor = ownerActor;
this.millisecond = millisecond;
this.name = name;
this.value = value;
this.easing = opt_easing || DEFAULT_EASING;
this.nextProperty = null;
return this;
};
var KeyframeProperty = Kapi.KeyframeProperty;