From afafef9f2b4cb4939ace2b7fa8a2bb97ad6b97b4 Mon Sep 17 00:00:00 2001 From: Theraot Date: Tue, 1 Mar 2022 17:02:04 -0500 Subject: [PATCH] Updating AStar2D documentation to mention the new bidirectional paramter (cherry picked from commit b18a018ad23f95b1f3cdedc74c14e09d666dc346) --- doc/classes/AStar2D.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/classes/AStar2D.xml b/doc/classes/AStar2D.xml index 35d9cbf6e..3ee09d83f 100644 --- a/doc/classes/AStar2D.xml +++ b/doc/classes/AStar2D.xml @@ -46,8 +46,9 @@ + - Returns whether there is a connection/segment between the given points. + Returns whether there is a connection/segment between the given points. If [code]bidirectional[/code] is [code]false[/code], returns whether movement from [code]id[/code] to [code]to_id[/code] is possible through this segment. @@ -75,8 +76,9 @@ + - Deletes the segment between the given points. + Deletes the segment between the given points. If [code]bidirectional[/code] is [code]false[/code], only movement from [code]id[/code] to [code]to_id[/code] is prevented, and a unidirectional segment possibly remains.