Question
Features not working on Vuforia View
I created a pulsing effect for one of my model items using the following code:
function pulseBracket(){
if (pulseBracketEnabled){
$timeout(function () {
var blueValue = (50 * (Math.sin(currentAngle))) + 50;
var color = 'rgba(245, 140, ' + blueValue + ', 1)';
$scope.app.view.Home.wdg['bracket'].color = color;
pulseBracket();
}, 5);
currentAngle = currentAngle + 0.04;
} else {
$scope.app.view.Home.wdg['bracket'].color = "";
}
}
This code works fine in the preview in Vuforia studio, but when I publish it and try to view it on a mobile device using Vuforia View, it doesn't seem to work. Is there any way to view debug logs on Vuforia view to figure out what the problem is?
