diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-12-25 21:19:56 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2017-12-25 21:19:56 +0700 |
commit | 6c897707caa74e80671e847c46aef6a1e52d4d79 (patch) | |
tree | eaf8712006d8906075b586fabeb0c75621332e8b /core | |
parent | 2717b7f038fe96249c8dc70c8ece3077b37bb3e4 (diff) |
Add missing parameter names
Diffstat (limited to 'core')
-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 4498efeb41..7c5dbc895a 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); |