Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Our prospect builds rather large plants and wants to have a functionality that makes it possible to walk through an AR experience by tapping waypoints or buttons that bring him to different location within the model.
Why?:
Thanks for your suggestions.
The easiest way I can think of would be to move the model around underneath you.
$scope.front = function () {
$scope.app.params['model_x'] = 0;
$scope.app.params['model_y'] = 0;
$scope.app.params['model_z'] = 0;
}
$scope.back = function () {
$scope.app.params['model_x'] = 7.43;
$scope.app.params['model_y'] = -0.917;
$scope.app.params['model_z'] = 19.87;
}
Hope this helps.
Allan
Thanks. I will try your solution.