Is there a way to calculate a PointGraph path from EndNodes instead of positions

Something like


> StartPath(PointNode A, PointNode B)

I’m currently just using PointNode.position as a work around, but I have some abstract Nodes, which shouldn’t depend on their position.

Hi

Sorry, currently this is not possible. Using the .position trick is the best solution at the moment.

(I suppose you can technically create a custom path type by subclassing ABPath and overriding the Prepare method. That would allow you to assign the start/end nodes however you want)

1 Like

Ok, thank you, I’ll have a look at the ABPath class.