Animate goto node (#1412)

* Animate goto node

* Update litegraph (animateToNode)
This commit is contained in:
Chenlei Hu
2024-11-03 10:57:17 -05:00
committed by GitHub
parent 27bacc36d4
commit 00df7b428f
3 changed files with 7 additions and 6 deletions

View File

@@ -3020,7 +3020,7 @@ export class ComfyApp {
public goToNode(nodeId: NodeId) {
const graphNode = this.graph.getNodeById(nodeId)
if (!graphNode) return
this.canvas.centerOnNode(graphNode)
this.canvas.animateToNode(graphNode)
}
}