navigation_introduction_2d.rst 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. .. _doc_navigation_overview_2d:
  2. 2D navigation overview
  3. ======================
  4. Godot provides multiple objects, classes and servers to facilitate grid-based or mesh-based navigation and pathfinding for 2D and 3D games.
  5. The following section provides a quick overview over all available navigation related objects in Godot for 2D scenes and their primary use.
  6. Godot provides the following objects and classes for 2D navigation:
  7. - :ref:`Astar2D<class_Astar2D>`
  8. ``Astar2D`` objects provide an option to find the shortest path in a graph of weighted **points**.
  9. The AStar2D class is best suited for cell-based 2D gameplay that does not require actors to reach any possible position within an area but only predefined, distinct positions.
  10. - :ref:`NavigationServer2D<class_NavigationServer2D>`
  11. ``NavigationServer2D`` provides a powerful server API to find the shortest path between two positions on an area defined by a navigation mesh.
  12. The NavigationServer is best suited for 2D realtime gameplay that does require actors to reach any possible position within a navigation mesh defined area.
  13. Mesh-based navigation scales well with large game worlds as a large area can often be defined with a single polygon when it would require many, many grid cells.
  14. The NavigationServer holds different navigation maps that each consist of regions that hold navigation mesh data.
  15. Agents can be placed on a map for avoidance calculation.
  16. RIDs are used to reference internal maps, regions, and agents when communicating with the server.
  17. The following NavigationServer RID types are available.
  18. - NavMap RID
  19. Reference to a specific navigation map that holds regions and agents.
  20. The map will attempt to join the navigation meshes of the regions by proximity.
  21. The map will synchronize regions and agents each physics frame.
  22. - NavRegion RID
  23. Reference to a specific navigation region that can hold navigation mesh data.
  24. The region can be enabled / disabled or the use restricted with a navigation layer bitmask.
  25. - NavLink RID
  26. Reference to a specific navigation link that connects two navigation mesh positions over arbitrary distances.
  27. - NavAgent RID
  28. Reference to a specific avoidance agent.
  29. The avoidance is specified by a radius value.
  30. - NavObstacle RID
  31. Reference to a specific avoidance obstacle used to affect and constrain the avoidance velocity of agents.
  32. The following scene tree nodes are available as helpers to work with the NavigationServer2D API.
  33. - :ref:`NavigationRegion2D<class_NavigationRegion2D>` Node
  34. A Node that holds a NavigationPolygon resource that defines a navigation mesh for the NavigationServer2D.
  35. - The region can be enabled / disabled.
  36. - The use in pathfinding can be further restricted through the ``navigation_layers`` bitmask.
  37. - The NavigationServer2D will join the navigation meshes of regions by proximity for a combined navigation mesh.
  38. - :ref:`NavigationLink2D<class_NavigationLink2D>` Node
  39. A Node that connects two positions on navigation meshes over arbitrary distances for pathfinding.
  40. - The link can be enabled / disabled.
  41. - The link can be made one-way or bidirectional.
  42. - The use in pathfinding can be further restricted through the ``navigation_layers`` bitmask.
  43. Links tell the pathfinding that a connection exists and at what cost. The actual agent handling and movement needs to happen in custom scripts.
  44. - :ref:`NavigationAgent2D<class_NavigationAgent2D>` Node
  45. A helper Node used to facilitate common NavigationServer2D API calls for pathfinding and avoidance.
  46. Use this Node with a Node2D inheriting parent Node.
  47. - :ref:`NavigationObstacle2D<class_NavigationObstacle2D>` Node
  48. A Node that can be used to affect and constrain the avoidance velocity of avoidance enabled agents.
  49. This Node does NOT affect the pathfinding of agents. You need to change the navigation meshes for that instead.
  50. The 2D navigation meshes are defined with the following resources:
  51. - :ref:`NavigationPolygon<class_NavigationPolygon>` Resource
  52. A resource that holds 2D navigation mesh data.
  53. It provides polygon drawing tools to allow defining navigation areas inside the Editor as well as at runtime.
  54. - The NavigationRegion2D Node uses this resource to define its navigation area.
  55. - The NavigationServer2D uses this resource to update the navigation mesh of individual regions.
  56. - The TileSet Editor creates and uses this resource internally when defining tile navigation areas.
  57. .. seealso::
  58. You can see how 2D navigation works in action using the
  59. `2D Navigation Polygon <https://github.com/godotengine/godot-demo-projects/tree/master/2d/navigation>`__
  60. and `Grid-based Navigation with AStarGrid2D <https://github.com/godotengine/godot-demo-projects/tree/master/2d/navigation_astar>`__
  61. demo projects.
  62. Setup for 2D scene
  63. ------------------
  64. The following steps show the basic setup for minimal viable navigation in 2D.
  65. It uses the NavigationServer2D and a NavigationAgent2D for path movement.
  66. #. Add a NavigationRegion2D Node to the scene.
  67. #. Click on the region node and add a new NavigationPolygon Resource to the region node.
  68. .. image:: img/nav_2d_min_setup_step1.png
  69. #. Define the movable navigation area with the NavigationPolygon draw tool. Then click
  70. the `Bake NavigationPolygon`` button on the toolbar.
  71. .. image:: img/nav_2d_min_setup_step2.png
  72. .. note::
  73. The navigation mesh defines the area where an actor can stand and move with its center.
  74. Leave enough margin between the navigation polygon edges and collision objects to not get path following actors repeatedly stuck on collision.
  75. #. Add a CharacterBody2D node in the scene with a basic collision shape and a sprite or mesh
  76. for visuals.
  77. #. Add a NavigationAgent2D node below the character node.
  78. .. image:: img/nav_2d_min_setup_step3.webp
  79. #. Add the following script to the CharacterBody2D node. We make sure to set a movement target
  80. after the scene has fully loaded and the NavigationServer had time to sync.
  81. .. tabs::
  82. .. code-tab:: gdscript GDScript
  83. extends CharacterBody2D
  84. var movement_speed: float = 200.0
  85. var movement_target_position: Vector2 = Vector2(60.0,180.0)
  86. @onready var navigation_agent: NavigationAgent2D = $NavigationAgent2D
  87. func _ready():
  88. # These values need to be adjusted for the actor's speed
  89. # and the navigation layout.
  90. navigation_agent.path_desired_distance = 4.0
  91. navigation_agent.target_desired_distance = 4.0
  92. # Make sure to not await during _ready.
  93. actor_setup.call_deferred()
  94. func actor_setup():
  95. # Wait for the first physics frame so the NavigationServer can sync.
  96. await get_tree().physics_frame
  97. # Now that the navigation map is no longer empty, set the movement target.
  98. set_movement_target(movement_target_position)
  99. func set_movement_target(movement_target: Vector2):
  100. navigation_agent.target_position = movement_target
  101. func _physics_process(delta):
  102. if navigation_agent.is_navigation_finished():
  103. return
  104. var current_agent_position: Vector2 = global_position
  105. var next_path_position: Vector2 = navigation_agent.get_next_path_position()
  106. velocity = current_agent_position.direction_to(next_path_position) * movement_speed
  107. move_and_slide()
  108. .. code-tab:: csharp C#
  109. using Godot;
  110. public partial class MyCharacterBody2D : CharacterBody2D
  111. {
  112. private NavigationAgent2D _navigationAgent;
  113. private float _movementSpeed = 200.0f;
  114. private Vector2 _movementTargetPosition = new Vector2(70.0f, 226.0f);
  115. public Vector2 MovementTarget
  116. {
  117. get { return _navigationAgent.TargetPosition; }
  118. set { _navigationAgent.TargetPosition = value; }
  119. }
  120. public override void _Ready()
  121. {
  122. base._Ready();
  123. _navigationAgent = GetNode<NavigationAgent2D>("NavigationAgent2D");
  124. // These values need to be adjusted for the actor's speed
  125. // and the navigation layout.
  126. _navigationAgent.PathDesiredDistance = 4.0f;
  127. _navigationAgent.TargetDesiredDistance = 4.0f;
  128. // Make sure to not await during _Ready.
  129. Callable.From(ActorSetup).CallDeferred();
  130. }
  131. public override void _PhysicsProcess(double delta)
  132. {
  133. base._PhysicsProcess(delta);
  134. if (_navigationAgent.IsNavigationFinished())
  135. {
  136. return;
  137. }
  138. Vector2 currentAgentPosition = GlobalTransform.Origin;
  139. Vector2 nextPathPosition = _navigationAgent.GetNextPathPosition();
  140. Velocity = currentAgentPosition.DirectionTo(nextPathPosition) * _movementSpeed;
  141. MoveAndSlide();
  142. }
  143. private async void ActorSetup()
  144. {
  145. // Wait for the first physics frame so the NavigationServer can sync.
  146. await ToSignal(GetTree(), SceneTree.SignalName.PhysicsFrame);
  147. // Now that the navigation map is no longer empty, set the movement target.
  148. MovementTarget = _movementTargetPosition;
  149. }
  150. }
  151. .. note::
  152. On the first frame the NavigationServer map has not synchronized region data and any path query will return empty. Wait for the NavigationServer synchronization by awaiting one frame in the script.