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 ```
Generated using TypeDoc
Ensure this instance is
class_
.