summaryrefslogtreecommitdiff
path: root/modules/openxr/action_map/openxr_interaction_profile.cpp
diff options
context:
space:
mode:
authorYuri Sizov <11782833+YuriSizov@users.noreply.github.com>2022-07-26 22:48:08 +0300
committerGitHub <noreply@github.com>2022-07-26 22:48:08 +0300
commit0a420c478761d49b5f973ff292e1f3e4a63613b3 (patch)
tree7d6e788818011ee93f1551b58b2bf57965225809 /modules/openxr/action_map/openxr_interaction_profile.cpp
parent674ccdb244a8a7d806bdf024c1127226eff11976 (diff)
parent7b834c8bfdf2888854524dcbddb82f1d95815509 (diff)
Merge pull request #63505 from RedMser/fix-unnamed-args
Fix unnamed arguments in XML docs
Diffstat (limited to 'modules/openxr/action_map/openxr_interaction_profile.cpp')
-rw-r--r--modules/openxr/action_map/openxr_interaction_profile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/openxr/action_map/openxr_interaction_profile.cpp b/modules/openxr/action_map/openxr_interaction_profile.cpp
index 342c36cdff..99d7a17acf 100644
--- a/modules/openxr/action_map/openxr_interaction_profile.cpp
+++ b/modules/openxr/action_map/openxr_interaction_profile.cpp
@@ -40,7 +40,7 @@ void OpenXRIPBinding::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_paths"), &OpenXRIPBinding::get_paths);
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "paths", PROPERTY_HINT_ARRAY_TYPE, "STRING"), "set_paths", "get_paths");
- ClassDB::bind_method(D_METHOD("has_path"), &OpenXRIPBinding::has_path);
+ ClassDB::bind_method(D_METHOD("has_path", "path"), &OpenXRIPBinding::has_path);
ClassDB::bind_method(D_METHOD("add_path", "path"), &OpenXRIPBinding::add_path);
ClassDB::bind_method(D_METHOD("remove_path", "path"), &OpenXRIPBinding::remove_path);
}