Question
Occluding
Hello,
I am trying to set the occluding property of a model (or modelItem) via a button, or via Java:
- e.g like this:
$scope.show = function() {
if ($scope.view.wdg['modelItem-1'].occluding == false){
$scope.view.wdg['modelItem-1']. occluding = true;
}
else {
$scope.view.wdg['modelItem-1']. occluding = false;
};
}
But it is not working. Has anyone some ideas?
Greetings
Raphael

