[Refactor] Replace deprecated getConnectionPos (#776)

Uses `getInputPos` or `getOutputPos` where appropriate.
This commit is contained in:
filtered
2025-03-14 09:19:28 +11:00
committed by GitHub
parent 36f197b34e
commit 034692120e
5 changed files with 17 additions and 20 deletions

View File

@@ -27,6 +27,6 @@ export class ToInputRenderLink implements RenderLink {
this.fromSlotIndex = outputIndex
this.fromPos = fromReroute
? fromReroute.pos
: this.node.getConnectionPos(false, outputIndex)
: this.node.getOutputPos(outputIndex)
}
}