animation.find("my rect").cast(RectShape).setDirection(1);
Deep clones this object
also iterate PreComp
layers
Get the frame number at the specified percentage
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 ```
Convert this sticker to a plain javascript object
Transforms this object into a lottie json string
This stringification may result in a different ordering of keys compared to JSON.stringify
since some lottie players require keys to be in a certain order.
The result is not compressed.
// example usage
import pako from "pako";
const text = animation.toTgsString();
const zipped = pako.gzip(text, { level: 9 });
promptDownload(new Blob([zipped], { type: "application/gzip" }));
The resulting compressed file should be less than 64KiB to be displayed correctly in the Telegram app (Telegram Desktop has a different limit) In node environments, zopfli may result in better compression than zlib.
spaces - number of spaces for pretty-printing precision - decimal places to round to
Generated using TypeDoc
Ensure this instance is
class_
.