Question
Show/Hide separate models on 3D button clicks for Hololens
I'm looking to be able to show a particular model and hide all others on the click of a particular 3D button.
On scene entry, I want a particular model (Model-1) to show and all others to be hidden, which I have done with the following code:
$scope.Test = function() {
$scope.setWidgetProp('model-2', 'ForceHide', 'true');
};
$scope.Test();
$scope.Test = function() {
$scope.setWidgetProp('model-3', 'ForceHide', 'true');
};
$scope.Test();
$scope.Test = function() {
$scope.setWidgetProp('model-4', 'ForceHide', 'true');
};
But then I want to SHOW each model separately when a particular button is pushed. Then if a user

