Playing multiple sequences with Hololens
Hello,
is it possible to play multiple sequences in Hololens experience? I tried with following:
$scope.app.closedoors = function() {
var modelEle1 = angular.element(document.getElementById('model-1'));
$scope.view.wdg['model-1'].sequence = "Uploaded/l-Creo 3D - Figure 1.pvi";
$timeout(function() {modelEle1.scope().playAll();},1000);
$scope.$applyAsync();
}
$scope.app.locateissue = function() {
var modelEle1 = angular.element(document.getElementById('model-1'));
$scope.view.wdg['model-1'].sequence = "Uploaded/l-Creo 3D - Figure 2.pvi";
$timeout(function() {modelEle1.scope().playAll();},1000);
$scope.$applyAsync();
}
This works fine in preview and this works with mobile experience but it won't work with Eyewear project.
Best regards,
Juho-Matti

