diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-09 01:15:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-09 01:15:06 +0200 |
commit | 6f72d9d19fe11ccc38a69e0460813646ad28d0e5 (patch) | |
tree | 7dcebf722eac9bc4d0b88a421ae3dd5abf246124 /editor/plugins | |
parent | 16b27304d90880b0a3a6bfefbb19f2718d5919af (diff) | |
parent | 5ae569560d16260aabca4e4a34fdb83376f6d669 (diff) |
Merge pull request #53584 from akien-mga/fix-bindings-arg-names
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/node_3d_editor_gizmos.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/node_3d_editor_gizmos.cpp b/editor/plugins/node_3d_editor_gizmos.cpp index f1b25c0dde..4d2fc29fe0 100644 --- a/editor/plugins/node_3d_editor_gizmos.cpp +++ b/editor/plugins/node_3d_editor_gizmos.cpp @@ -832,7 +832,7 @@ void EditorNode3DGizmo::_bind_methods() { ClassDB::bind_method(D_METHOD("get_plugin"), &EditorNode3DGizmo::get_plugin); ClassDB::bind_method(D_METHOD("clear"), &EditorNode3DGizmo::clear); ClassDB::bind_method(D_METHOD("set_hidden", "hidden"), &EditorNode3DGizmo::set_hidden); - ClassDB::bind_method(D_METHOD("is_subgizmo_selected"), &EditorNode3DGizmo::is_subgizmo_selected); + ClassDB::bind_method(D_METHOD("is_subgizmo_selected", "id"), &EditorNode3DGizmo::is_subgizmo_selected); ClassDB::bind_method(D_METHOD("get_subgizmo_selection"), &EditorNode3DGizmo::get_subgizmo_selection); GDVIRTUAL_BIND(_redraw); |