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

@@ -23,6 +23,7 @@ export { INodeSlot, INodeInputSlot, INodeOutputSlot, ConnectingLink, CanvasColou
export { IWidget }
export { LGraphBadge, BadgePosition }
export { SlotShape, LabelPosition, SlotDirection, SlotType }
export { EaseFunction } from "./types/globalEnums"
export function clamp(v: number, a: number, b: number): number {
return a > v ? a : b < v ? b : v