diff options
| author | George Marques | 2017-12-25 12:38:27 -0200 |
|---|---|---|
| committer | GitHub | 2017-12-25 12:38:27 -0200 |
| commit | bcf684f9d7a9e983bf4bc93ef037f05905d74b23 (patch) | |
| tree | eaf8712006d8906075b586fabeb0c75621332e8b /core/math/a_star.cpp | |
| parent | 2717b7f038fe96249c8dc70c8ece3077b37bb3e4 (diff) | |
| parent | 6c897707caa74e80671e847c46aef6a1e52d4d79 (diff) | |
| download | godot-bcf684f9d7a9e983bf4bc93ef037f05905d74b23.tar.gz godot-bcf684f9d7a9e983bf4bc93ef037f05905d74b23.tar.zst godot-bcf684f9d7a9e983bf4bc93ef037f05905d74b23.zip | |
Merge pull request #15042 from Noshyaar/pr3
Add missing parameter names
Diffstat (limited to 'core/math/a_star.cpp')
| -rw-r--r-- | core/math/a_star.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/a_star.cpp b/core/math/a_star.cpp index 4498efeb4..7c5dbc895 100644 --- a/core/math/a_star.cpp +++ b/core/math/a_star.cpp @@ -459,7 +459,7 @@ void AStar::_bind_methods() { ClassDB::bind_method(D_METHOD("has_point", "id"), &AStar::has_point); ClassDB::bind_method(D_METHOD("get_points"), &AStar::get_points); - ClassDB::bind_method(D_METHOD("get_point_connections"), &AStar::get_point_connections); + ClassDB::bind_method(D_METHOD("get_point_connections", "id"), &AStar::get_point_connections); ClassDB::bind_method(D_METHOD("connect_points", "id", "to_id", "bidirectional"), &AStar::connect_points, DEFVAL(true)); ClassDB::bind_method(D_METHOD("disconnect_points", "id", "to_id"), &AStar::disconnect_points); |
