Unverified Commit 570b7e79 by Rémi Verschelde Committed by GitHub

Merge pull request #38843 from m4gr3d/update_oculus_hand_tracking_permission

Update the permission string for Oculus hand tracking
parents 38250ef5 6e2988f2
......@@ -962,8 +962,8 @@ class EditorExportPlatformAndroid : public EditorExportPlatform {
feature_required_list.push_back(hand_tracking_index == 2);
feature_versions.push_back(-1); // no version attribute should be added.
if (perms.find("oculus.permission.handtracking") == -1) {
perms.push_back("oculus.permission.handtracking");
if (perms.find("com.oculus.permission.HAND_TRACKING") == -1) {
perms.push_back("com.oculus.permission.HAND_TRACKING");
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment