Godot Version
4.6
Question
From AStar3D — Godot Engine (stable) documentation in English , the document clearly explained that you need to connect the points like these:
var astar = AStar3D.new()
astar.add_point(1, Vector3(1, 1, 0))
astar.add_point(2, Vector3(0, 5, 0))
astar.connect_points(1, 2, false)
But here’s the thing:
-
I would like to add/edit/connect the points directly in the editor. Possible?
-
Is it possible to visualize how these points connect together out of the box? I want to see these points connecting together in the editor and also in the game for debugging purpose.