Skip to main content
5-Regular Member
June 30, 2023
Question

Hand Gesture for Hololens 2 Not Working

  • June 30, 2023
  • 1 reply
  • 983 views

Hello, 

I'm trying to use hand gesture for Hololens 2, but seems noone of the gestures work. Am I missing something?

Thanks in advance

Screenshot 2023-06-30 084930.png

Screenshot 2023-06-30 085004.png

Screenshot 2023-06-30 085402.png

 

 

1 reply

21-Topaz I
July 4, 2023

Hi @GC_10564838 , 

checked on one old HL projects I found where a gesture was used  (currently I use mostly 3d Buttons and userpick)

So there was  definition   in Home.js like this;

$scope.app.playa = function() {
 
 	$timeout(function () {
 $scope.$root.$broadcast('app.mdl.TestThing.svc.setMystep');
 }, 500);
 }
}
//==========================
$scope.app.seq3 = function() {
 $scope.view.wdg['model-1']['sequence'] = 'app/resources/Uploaded/l-Creo 3D - Test.pvi';
 $scope.app.params['sequence'] = 'app/resources/Uploaded/l-Creo 3D - Test.pvi'; 
 $timeout(function () {
 $rootScope.$broadcast('app.mdl.TestThing.svc.SetInfo');
 }, 500);
 }
}

Here the code but only the function name definition is relevant as example

But I tested and it was working on the device . In the UI :

2023-07-04_09-14-20.jpg

Please, let me know if similar definition will work for you.

5-Regular Member
July 6, 2023

Hi @RolandRaytchev ,

i tested your example but the only gesture recognized is the HOLD.

I also tested on Hololens the "Studio Sample - Hololens Experience" with the quadcopter and still can't recognize my gesture.

So, or i have very bad gesture or probably there is any issues somewhere.

Anyway, very thanks.