Re: Playing multiple sequences with Hololens
Hi,
I am also having issue with playing multiple figures/sequences in Hololens. This would be reasonable for service procedures..
Is it still not possible? Any news or workarounds? 🙂
Regards,
Bojan
Hi,
I am also having issue with playing multiple figures/sequences in Hololens. This would be reasonable for service procedures..
Is it still not possible? Any news or workarounds? 🙂
Regards,
Bojan
Hi Bojan,
Yes, it worked for me. I used the below JS function in Home.js and called it under an Application Event.
$scope.ChangeSequence = function(seq_name)
{
$scope.view.wdg['model-1']['sequence'] = 'app/resources/Uploaded/l-Creo 3D - ElbowMotorReplacement.pvi';
$timeout(function() {
$scope.$broadcast('app.view["Home"].wdg["model-1"].svc.playAll');
$scope.$applyAsync()
}
, 2000);
};
You would have to write separate functions for each sequence and link them in the Application Events as shown above.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.