Searched refs:get_point_path (Results 1 – 9 of 9) sorted by relevance
/dports/devel/godot/godot-3.2.3-stable/core/math/ |
H A D | a_star.h | 159 PoolVector<Vector3> get_point_path(int p_from_id, int p_to_id); 206 PoolVector<Vector2> get_point_path(int p_from_id, int p_to_id);
|
H A D | a_star.cpp | 438 PoolVector<Vector3> AStar::get_point_path(int p_from_id, int p_to_id) { in get_point_path() function in AStar 580 ClassDB::bind_method(D_METHOD("get_point_path", "from_id", "to_id"), &AStar::get_point_path); in _bind_methods() 716 PoolVector<Vector2> AStar2D::get_point_path(int p_from_id, int p_to_id) { in get_point_path() function in AStar2D 903 ClassDB::bind_method(D_METHOD("get_point_path", "from_id", "to_id"), &AStar2D::get_point_path); in _bind_methods()
|
/dports/devel/godot-tools/godot-3.2.3-stable/core/math/ |
H A D | a_star.h | 159 PoolVector<Vector3> get_point_path(int p_from_id, int p_to_id); 206 PoolVector<Vector2> get_point_path(int p_from_id, int p_to_id);
|
H A D | a_star.cpp | 438 PoolVector<Vector3> AStar::get_point_path(int p_from_id, int p_to_id) { in get_point_path() function in AStar 580 ClassDB::bind_method(D_METHOD("get_point_path", "from_id", "to_id"), &AStar::get_point_path); in _bind_methods() 716 PoolVector<Vector2> AStar2D::get_point_path(int p_from_id, int p_to_id) { in get_point_path() function in AStar2D 903 ClassDB::bind_method(D_METHOD("get_point_path", "from_id", "to_id"), &AStar2D::get_point_path); in _bind_methods()
|
/dports/devel/godot2-tools/godot-2.1.6-stable/core/math/ |
H A D | a_star.h | 118 DVector<Vector3> get_point_path(int p_from_id, int p_to_id);
|
H A D | a_star.cpp | 300 DVector<Vector3> AStar::get_point_path(int p_from_id, int p_to_id) { in get_point_path() function in AStar 420 ObjectTypeDB::bind_method(_MD("get_point_path", "from_id", "to_id"), &AStar::get_point_path); in _bind_methods()
|
/dports/devel/godot2/godot-2.1.6-stable/core/math/ |
H A D | a_star.h | 118 DVector<Vector3> get_point_path(int p_from_id, int p_to_id);
|
H A D | a_star.cpp | 300 DVector<Vector3> AStar::get_point_path(int p_from_id, int p_to_id) { in get_point_path() function in AStar 420 ObjectTypeDB::bind_method(_MD("get_point_path", "from_id", "to_id"), &AStar::get_point_path); in _bind_methods()
|
/dports/devel/godot-tools/godot-demo-projects-8d9d58f112d8/2d/navigation_astar/ |
H A D | pathfind_astar.gd | 146 _point_path = astar_node.get_point_path(start_point_index, end_point_index)
|