Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
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
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 :
Please, let me know if similar definition will work for you.
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.