You can only append keyframes (for now)
Ensure this instance is class_
.
animation.find("my rect").setDirection(1); // type error
animation.find("my rect").cast("RectShape").setDirection(1); // works
animation.find("my rect").cast(RectShape).setDirection(1);
Deep clones this object
Test if this item is an instance of class_
. You can also use instanceof, but this is more conventient.
// example
const fill = new FillShape();
fill.is("FillShape") // true
fill.is("Shape") // true
fill.is("LottieItem") // true
fill.is("Lottie") // false
``` // example const fill = new FillShape();
fill.is(FillShape) // true fill.is(Shape) // true fill.is(LottieItem) // true
fill.is(Lottie) // false ```
Change the start time of every keyframe by delta
frames
Generated using TypeDoc
A bezier path value that can be animated
References: