Skip to content

Commit

Permalink
Merge pull request #92293 from rvenson/fix-navigation-agent-docs
Browse files Browse the repository at this point in the history
Clarify `velocity_computed` signal description
  • Loading branch information
akien-mga committed May 28, 2024
2 parents cfe80f9 + c8cab57 commit 4ca4746
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/classes/NavigationAgent2D.xml
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
<signal name="velocity_computed">
<param index="0" name="safe_velocity" type="Vector2" />
<description>
Notifies when the collision avoidance velocity is calculated. Emitted when [member velocity] is set. Only emitted when [member avoidance_enabled] is true.
Notifies when the collision avoidance velocity is calculated. Emitted every update as long as [member avoidance_enabled] is [code]true[/code] and the agent has a navigation map.
</description>
</signal>
<signal name="waypoint_reached">
Expand Down
2 changes: 1 addition & 1 deletion doc/classes/NavigationAgent3D.xml
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@
<signal name="velocity_computed">
<param index="0" name="safe_velocity" type="Vector3" />
<description>
Notifies when the collision avoidance velocity is calculated. Emitted when [member velocity] is set. Only emitted when [member avoidance_enabled] is true.
Notifies when the collision avoidance velocity is calculated. Emitted every update as long as [member avoidance_enabled] is [code]true[/code] and the agent has a navigation map.
</description>
</signal>
<signal name="waypoint_reached">
Expand Down

0 comments on commit 4ca4746

Please sign in to comment.