summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorashley <theashtronaut@protonmail.ch>2024-02-06 20:20:13 -0800
committerallison <theashtronaut@protonmail.ch>2024-04-03 22:27:33 -0700
commitaa1bbe15427d9f13d777c73ec944b8587d26af03 (patch)
treead7d7679e45f2667149b35b18af295d651ba12db /misc
parentf47f4a02c87bb701452a621d254ad30c7be84faa (diff)
downloadredot-engine-aa1bbe15427d9f13d777c73ec944b8587d26af03.tar.gz
add partial path return option for astar
* AStar2D, AStar3D and AStarGrid2D now can return a partial path if the destination point isn't reachable but still in the map. This option is available for both get_point_path and get_id_path
Diffstat (limited to 'misc')
-rw-r--r--misc/extension_api_validation/4.2-stable.expected13
1 files changed, 13 insertions, 0 deletions
diff --git a/misc/extension_api_validation/4.2-stable.expected b/misc/extension_api_validation/4.2-stable.expected
index c9eed86c1a..3df19bb83a 100644
--- a/misc/extension_api_validation/4.2-stable.expected
+++ b/misc/extension_api_validation/4.2-stable.expected
@@ -255,3 +255,16 @@ GH-89992
Validate extension JSON: Error: Field 'classes/Node/methods/replace_by/arguments': size changed value in new API, from 2 to 3.
Added optional argument to prevent children to be reparented during replace_by. Compatibility method registered.
+
+
+GH-88047
+--------
+Validate extension JSON: Error: Field 'classes/AStar2D/methods/get_id_path/arguments': size changed value in new API, from 2 to 3.
+Validate extension JSON: Error: Field 'classes/AStar2D/methods/get_point_path/arguments': size changed value in new API, from 2 to 3.
+Validate extension JSON: Error: Field 'classes/AStar3D/methods/get_id_path/arguments': size changed value in new API, from 2 to 3.
+Validate extension JSON: Error: Field 'classes/AStar3D/methods/get_point_path/arguments': size changed value in new API, from 2 to 3.
+Validate extension JSON: Error: Field 'classes/AStarGrid2D/methods/get_id_path/arguments': size changed value in new API, from 2 to 3.
+Validate extension JSON: Error: Field 'classes/AStarGrid2D/methods/get_point_path/arguments': size changed value in new API, from 2 to 3.
+
+Added optional "allow_partial_path" argument to get_id_path and get_point_path methods in AStar classes.
+Compatibility methods registered.