Reland animateToNode (#259)

* Reland animateToNode

* nit
This commit is contained in:
Chenlei Hu
2024-11-03 10:45:42 -05:00
committed by GitHub
parent 4dc3dc97f8
commit 6200aa8602
3 changed files with 79 additions and 1 deletions

View File

@@ -51,3 +51,10 @@ export enum LGraphEventMode {
ON_TRIGGER = 3,
BYPASS = 4,
}
export enum EaseFunction {
LINEAR = "linear",
EASE_IN_QUAD = "easeInQuad",
EASE_OUT_QUAD = "easeOutQuad",
EASE_IN_OUT_QUAD = "easeInOutQuad",
}