NavigationRegion2D

实验性: This class may be changed or removed in future versions.

继承: Node2D < CanvasItem < Node < Object

A traversable 2D region that NavigationAgent2D s can use for pathfinding.

描述

A traversable 2D region based on a NavigationPolygon that NavigationAgent2D s can use for pathfinding.

Two regions can be connected to each other if they share a similar edge. You can set the minimum distance between two vertices required to connect two edges by using NavigationServer2D.map_set_edge_connection_margin.

Note: Overlapping two regions' navigation polygons is not enough for connecting two regions. They must share a similar edge.

The pathfinding cost of entering a region from another region can be controlled with the enter_cost value.

Note: This value is not added to the path cost when the start position is already inside this region.

The pathfinding cost of traveling distances inside this region can be controlled with the travel_cost multiplier.

Note: This node caches changes to its properties, so if you make changes to the underlying region RID in NavigationServer2D, they will not be reflected in this node's properties.

属性

方法

voidbake_navigation_polygon ( on_thread: bool = true )
boolget_navigation_layer_value ( layer_number: int ) const1
RIDget_navigation_map ( ) const1
RIDget_region_rid ( ) const1
RIDget_rid ( ) const1
boolis_baking ( ) const1
voidset_navigation_layer_value ( layer_number: int, value: bool )
voidset_navigation_map ( navigation_map: RID )

信号

bake_finished ( )

Emitted when a navigation polygon bake operation is completed.


navigation_polygon_changed ( )

Emitted when the used navigation polygon is replaced or changes to the internals of the current navigation polygon are committed.


属性说明

bool enabled = true

  • void set_enabled ( value: bool )
  • bool is_enabled ( )

Determines if the NavigationRegion2D is enabled or disabled.


float enter_cost = 0.0

  • void set_enter_cost ( value: float )
  • float get_enter_cost ( )

When pathfinding enters this region's navigation mesh from another regions navigation mesh the enter_cost value is added to the path distance for determining the shortest path.


int navigation_layers = 1

  • void set_navigation_layers ( value: int )
  • int get_navigation_layers ( )

A bitfield determining all navigation layers the region belongs to. These navigation layers can be checked upon when requesting a path with NavigationServer2D.map_get_path.


NavigationPolygon navigation_polygon

The NavigationPolygon resource to use.


float travel_cost = 1.0

  • void set_travel_cost ( value: float )
  • float get_travel_cost ( )

When pathfinding moves inside this region's navigation mesh the traveled distances are multiplied with travel_cost for determining the shortest path.


bool use_edge_connections = true

  • void set_use_edge_connections ( value: bool )
  • bool get_use_edge_connections ( )

If enabled the navigation region will use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin.


方法说明

void bake_navigation_polygon ( on_thread: bool = true )

Bakes the NavigationPolygon. If on_thread is set to true (default), the baking is done on a separate thread.


bool get_navigation_layer_value ( layer_number: int ) const1

Returns whether or not the specified layer of the navigation_layers bitmask is enabled, given a layer_number between 1 and 32.


RID get_navigation_map ( ) const1

Returns the current navigation map RID used by this region.


RID get_region_rid ( ) const1

已弃用: Use get_rid instead.

Returns the RID of this region on the NavigationServer2D.


RID get_rid ( ) const1

Returns the RID of this region on the NavigationServer2D. Combined with NavigationServer2D.map_get_closest_point_owner can be used to identify the NavigationRegion2D closest to a point on the merged navigation map.


bool is_baking ( ) const1

Returns true when the NavigationPolygon is being baked on a background thread.


void set_navigation_layer_value ( layer_number: int, value: bool )

Based on value, enables or disables the specified layer in the navigation_layers bitmask, given a layer_number between 1 and 32.


void set_navigation_map ( navigation_map: RID )

Sets the RID of the navigation map this region should use. By default the region will automatically join the World2D default navigation map so this function is only required to override the default map.

2

本方法通常需要用户覆盖才能生效。

1

本方法无副作用,不会修改该实例的任何成员变量。

3

本方法除了能接受在此处描述的参数外,还能够继续接受任意数量的参数。

4

本方法用于构造某个类型。

5

调用本方法无需实例,可直接使用类名进行调用。

6

本方法描述的是使用本类型作为左操作数的有效运算符。

7

这个值是由下列位标志构成位掩码的整数。

8

无返回值。