You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Fix a typo in navigation server documentation
This commit is contained in:
@@ -206,7 +206,7 @@
|
|||||||
</method>
|
</method>
|
||||||
<method name="map_is_active" qualifiers="const">
|
<method name="map_is_active" qualifiers="const">
|
||||||
<return type="bool" />
|
<return type="bool" />
|
||||||
<param index="0" name="nap" type="RID" />
|
<param index="0" name="map" type="RID" />
|
||||||
<description>
|
<description>
|
||||||
Returns true if the map is active.
|
Returns true if the map is active.
|
||||||
</description>
|
</description>
|
||||||
|
|||||||
@@ -231,7 +231,7 @@
|
|||||||
</method>
|
</method>
|
||||||
<method name="map_is_active" qualifiers="const">
|
<method name="map_is_active" qualifiers="const">
|
||||||
<return type="bool" />
|
<return type="bool" />
|
||||||
<param index="0" name="nap" type="RID" />
|
<param index="0" name="map" type="RID" />
|
||||||
<description>
|
<description>
|
||||||
Returns true if the map is active.
|
Returns true if the map is active.
|
||||||
</description>
|
</description>
|
||||||
|
|||||||
@@ -204,7 +204,7 @@ void NavigationServer2D::_bind_methods() {
|
|||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("map_create"), &NavigationServer2D::map_create);
|
ClassDB::bind_method(D_METHOD("map_create"), &NavigationServer2D::map_create);
|
||||||
ClassDB::bind_method(D_METHOD("map_set_active", "map", "active"), &NavigationServer2D::map_set_active);
|
ClassDB::bind_method(D_METHOD("map_set_active", "map", "active"), &NavigationServer2D::map_set_active);
|
||||||
ClassDB::bind_method(D_METHOD("map_is_active", "nap"), &NavigationServer2D::map_is_active);
|
ClassDB::bind_method(D_METHOD("map_is_active", "map"), &NavigationServer2D::map_is_active);
|
||||||
ClassDB::bind_method(D_METHOD("map_set_cell_size", "map", "cell_size"), &NavigationServer2D::map_set_cell_size);
|
ClassDB::bind_method(D_METHOD("map_set_cell_size", "map", "cell_size"), &NavigationServer2D::map_set_cell_size);
|
||||||
ClassDB::bind_method(D_METHOD("map_get_cell_size", "map"), &NavigationServer2D::map_get_cell_size);
|
ClassDB::bind_method(D_METHOD("map_get_cell_size", "map"), &NavigationServer2D::map_get_cell_size);
|
||||||
ClassDB::bind_method(D_METHOD("map_set_edge_connection_margin", "map", "margin"), &NavigationServer2D::map_set_edge_connection_margin);
|
ClassDB::bind_method(D_METHOD("map_set_edge_connection_margin", "map", "margin"), &NavigationServer2D::map_set_edge_connection_margin);
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ void NavigationServer3D::_bind_methods() {
|
|||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("map_create"), &NavigationServer3D::map_create);
|
ClassDB::bind_method(D_METHOD("map_create"), &NavigationServer3D::map_create);
|
||||||
ClassDB::bind_method(D_METHOD("map_set_active", "map", "active"), &NavigationServer3D::map_set_active);
|
ClassDB::bind_method(D_METHOD("map_set_active", "map", "active"), &NavigationServer3D::map_set_active);
|
||||||
ClassDB::bind_method(D_METHOD("map_is_active", "nap"), &NavigationServer3D::map_is_active);
|
ClassDB::bind_method(D_METHOD("map_is_active", "map"), &NavigationServer3D::map_is_active);
|
||||||
ClassDB::bind_method(D_METHOD("map_set_up", "map", "up"), &NavigationServer3D::map_set_up);
|
ClassDB::bind_method(D_METHOD("map_set_up", "map", "up"), &NavigationServer3D::map_set_up);
|
||||||
ClassDB::bind_method(D_METHOD("map_get_up", "map"), &NavigationServer3D::map_get_up);
|
ClassDB::bind_method(D_METHOD("map_get_up", "map"), &NavigationServer3D::map_get_up);
|
||||||
ClassDB::bind_method(D_METHOD("map_set_cell_size", "map", "cell_size"), &NavigationServer3D::map_set_cell_size);
|
ClassDB::bind_method(D_METHOD("map_set_cell_size", "map", "cell_size"), &NavigationServer3D::map_set_cell_size);
|
||||||
|
|||||||
Reference in New Issue
Block a user